亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? spring.ftl

?? 使用struts+spring+JDBC 實現的學生選課管理系統
?? FTL
字號:
<#-- * spring.ftl * * This file consists of a collection of FreeMarker macros aimed at easing * some of the common requirements of web applications - in particular * handling of forms. * * Spring's FreeMarker support will automatically make this file and therefore * all macros within it available to any application using Spring's * FreeMarkerConfigurer. * * To take advantage of these macros, the "exposeSpringMacroHelpers" property * of the FreeMarker class needs to be set to "true". This will expose a * RequestContext under the name "springMacroRequestContext", as needed by * the macros in this library. * * @author Darren Davison * @author Juergen Hoeller * @since 1.1 --><#-- * message * * Macro to translate a message code into a message. --><#macro message code>${springMacroRequestContext.getMessage(code)}</#macro><#-- * messageText * * Macro to translate a message code into a message, * using the given default text if no message found. --><#macro messageText code, text>${springMacroRequestContext.getMessage(code, text)}</#macro><#-- * url * * Takes a relative URL and makes it absolute from the server root by * adding the context root for the web application. --><#macro url relativeUrl>${springMacroRequestContext.getContextPath()}${relativeUrl}</#macro><#-- * bind * * Exposes a BindStatus object for the given bind path, which can be * a bean (e.g. "person") to get global errors, or a bean property * (e.g. "person.name") to get field errors. Can be called multiple times * within a form to bind to multiple command objects and/or field names. * * This macro will participate in the default HTML escape setting for the given * RequestContext. This can be customized by calling "setDefaultHtmlEscape" * on the "springMacroRequestContext" context variable, or via the * "defaultHtmlEscape" context-param in web.xml (same as for the JSP bind tag). * Also regards a "htmlEscape" variable in the namespace of this library. * * Producing no output, the following context variable will be available * each time this macro is referenced (assuming you import this library in * your templates with the namespace 'spring'): * *   spring.status : a BindStatus instance holding the command object name, *   expression, value, and error messages and codes for the path supplied * * @param path : the path (string value) of the value required to bind to. *   Spring defaults to a command name of "command" but this can be overridden *   by user config. --><#macro bind path>    <#if htmlEscape?exists>        <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#else>        <#assign status = springMacroRequestContext.getBindStatus(path)>    </#if>    <#-- assign a temporary value, forcing a string representation for any    kind of variable.  This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * bindEscaped * * Similar to spring:bind, but takes an explicit HTML escape flag rather * than relying on the default HTML escape setting. --><#macro bindEscaped path, htmlEscape>    <#assign status = springMacroRequestContext.getBindStatus(path, htmlEscape)>    <#-- assign a temporary value, forcing a string representation for any    kind of variable.  This temp value is only used in this macro lib -->    <#if status.value?exists && status.value?is_boolean>        <#assign stringStatusValue=status.value?string>    <#else>        <#assign stringStatusValue=status.value?default("")>    </#if></#macro><#-- * formInput * * Display a form input field of type 'text' and bind it to an attribute * of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formInput path attributes="" fieldType="text" >    <@bind path/>    <input type="${fieldType}" id="${status.expression}" name="${status.expression}" value="<#if fieldType!="password">${stringStatusValue}</#if>" ${attributes}    <@closeTag/></#macro><#-- * formPasswordInput * * Display a form input field of type 'password' and bind it to an attribute * of a command or bean.  No value will ever be displayed.  This functionality * can also be obtained by calling the formInput macro with a 'type' parameter * of 'password' * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formPasswordInput path attributes="" >    <@formInput path, attributes, "password"/></#macro><#-- * formHiddenInput * * Generate a form input field of type 'hidden' and bind it to an attribute * of a command or bean.  This functionality can also be obtained by calling * the formInput macro with a 'type' parameter of 'hidden' * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formHiddenInput path attributes="" >    <@formInput path, attributes, "hidden"/></#macro><#-- * formTextarea * * Display a text area and bind it to an attribute of a command or bean. * * @param path the name of the field to bind to * @param attributes any additional attributes for the element (such as class *    or CSS styles or size --><#macro formTextarea path attributes="" >    <@bind path/>    <textarea id="${status.expression}" name="${status.expression}" ${attributes}>${stringStatusValue}</textarea></#macro><#-- * formSingleSelect * * Show a selectbox (dropdown) input element allowing a single value to be chosen * from a list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formSingleSelect path options attributes="">    <@bind path/>    <select id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <option value="${value}"<@checkSelected value/>>${options[value]}</option>        </#list>    </select></#macro><#-- * formMultiSelect * * Show a listbox of options allowing the user to make 0 or more choices from * the list of options. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formMultiSelect path options attributes="">    <@bind path/>    <select multiple="multiple" id="${status.expression}" name="${status.expression}" ${attributes}>        <#list options?keys as value>        <#assign isSelected = contains(status.value?default([""]), value)>        <option value="${value}" <#if isSelected>selected="selected"</#if>>${options[value]}</option>        </#list>    </select></#macro><#-- * formRadioButtons * * Show radio buttons. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option.  Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formRadioButtons path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <input type="radio" id="${status.expression}" name="${status.expression}" value="${value}"        <#if stringStatusValue == value>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${separator}    </#list></#macro><#-- * formCheckboxes * * Show checkboxes. * * @param path the name of the field to bind to * @param options a map (value=label) of all the available options * @param separator the html tag or other character list that should be used to *    separate each option.  Typically '&nbsp;' or '<br>' * @param attributes any additional attributes for the element (such as class *    or CSS styles or size--><#macro formCheckboxes path options separator attributes="">    <@bind path/>    <#list options?keys as value>    <#assign isSelected = contains(status.value?default([""]), value)>    <input type="checkbox" id="${status.expression}" name="${status.expression}" value="${value}"        <#if isSelected>checked="checked"</#if> ${attributes}    <@closeTag/>    ${options[value]}${separator}    </#list></#macro><#-- * showErrors * * Show validation errors for the currently bound field, with * optional style attributes. * * @param separator the html tag or other character list that should be used to *    separate each option. Typically '<br>'. * @param classOrStyle either the name of a CSS class element (which is defined in *    the template or an external CSS file) or an inline style.  If the value passed in here *    contains a colon (:) then a 'style=' attribute will be used, else a 'class=' attribute *    will be used.--><#macro showErrors separator classOrStyle="">    <#list status.errorMessages as error>    <#if classOrStyle == "">        <b>${error}</b>    <#else>        <#if classOrStyle?index_of(":") == -1><#assign attr="class"><#else><#assign attr="style"></#if>        <span ${attr}="${classOrStyle}">${error}</span>    </#if>    <#if error_has_next>${separator}</#if>    </#list></#macro><#-- * checkSelected * * Check a value in a list to see if it is the currently selected value. * If so, add the 'selected="selected"' text to the output. * Handles values of numeric and string types. * This function is used internally but can be accessed by user code if required. * * @param value the current value in a list iteration--><#macro checkSelected value>    <#if stringStatusValue?is_number && stringStatusValue == value?number>selected="selected"</#if>    <#if stringStatusValue?is_string && stringStatusValue == value>selected="selected"</#if></#macro><#-- * contains * * Macro to return true if the list contains the scalar, false if not. * Surprisingly not a FreeMarker builtin. * This function is used internally but can be accessed by user code if required. * * @param list the list to search for the item * @param item the item to search for in the list * @return true if item is found in the list, false otherwise--><#function contains list item>    <#list list as nextInList>    <#if nextInList == item><#return true></#if>    </#list>    <#return false></#function><#-- * closeTag * * Simple macro to close an HTML tag that has no body with '>' or '/>', * depending on the value of a 'xhtmlCompliant' variable in the namespace * of this library.--><#macro closeTag>    <#if xhtmlCompliant?exists && xhtmlCompliant>/><#else>></#if></#macro>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲午夜精品在线| 99久久伊人网影院| 亚洲二区在线观看| 亚洲品质自拍视频网站| 国产精品久久久久9999吃药| 久久一夜天堂av一区二区三区| 6080日韩午夜伦伦午夜伦| 欧美亚洲综合另类| 欧洲精品在线观看| 欧美影院精品一区| 欧美又粗又大又爽| 欧美日韩午夜精品| 欧美精品v日韩精品v韩国精品v| 在线日韩av片| 欧美日韩中文精品| 6080国产精品一区二区| 欧美精品久久一区二区三区| 制服.丝袜.亚洲.中文.综合| 欧美一区二区视频网站| 日韩一区二区高清| 精品国产乱码久久久久久免费 | 一区二区日韩av| 亚洲天堂网中文字| 亚洲欧美激情在线| 亚洲国产一区二区视频| 亚洲不卡av一区二区三区| 亚洲第一精品在线| 天使萌一区二区三区免费观看| 日韩中文字幕1| 老司机精品视频线观看86| 国产一区高清在线| 成人aaaa免费全部观看| 欧美在线free| 欧美成人午夜电影| 欧美国产一区二区| 一区二区三区精密机械公司| 午夜激情综合网| 久久不见久久见中文字幕免费| 国产精品原创巨作av| 99久久精品国产麻豆演员表| 欧洲精品一区二区三区在线观看| 制服.丝袜.亚洲.中文.综合| 久久色视频免费观看| 亚洲欧洲日韩一区二区三区| 最近日韩中文字幕| 日韩在线一二三区| 国产成人综合亚洲网站| 在线免费观看视频一区| 日韩免费性生活视频播放| 国产精品成人免费在线| 午夜私人影院久久久久| 国产精品99久久久久久久vr| 色婷婷综合久久久中文一区二区| 91精品国产91久久久久久最新毛片| 久久精品夜夜夜夜久久| 依依成人精品视频| 激情丁香综合五月| 91久久精品一区二区二区| 欧美一区二区私人影院日本| 国产精品久久久爽爽爽麻豆色哟哟| 亚洲成人高清在线| 懂色av一区二区三区免费看| 欧美日韩精品高清| 国产精品精品国产色婷婷| 日本视频一区二区| 99精品视频免费在线观看| 日韩欧美国产午夜精品| 中文字幕一区二区三区不卡在线| 日日摸夜夜添夜夜添亚洲女人| 波多野结衣在线aⅴ中文字幕不卡| 制服丝袜在线91| 日韩一区在线免费观看| 国产做a爰片久久毛片| 色av成人天堂桃色av| 国产亚洲福利社区一区| 日本在线观看不卡视频| 在线观看一区二区视频| 欧美激情中文字幕一区二区| 蜜臀av一区二区在线免费观看| 色综合天天综合| 国产亚洲女人久久久久毛片| 日本aⅴ亚洲精品中文乱码| 91丨九色丨蝌蚪富婆spa| 久久精品人人爽人人爽| 免费久久精品视频| 欧美情侣在线播放| 亚洲精品日韩综合观看成人91| 国产成人三级在线观看| 日韩精品资源二区在线| 亚洲成a人在线观看| 91论坛在线播放| 中文字幕国产一区| 国产呦萝稀缺另类资源| 91精品国产一区二区| 亚洲观看高清完整版在线观看| 99久久久国产精品| 日本一区二区免费在线观看视频| 国产在线视频精品一区| 日韩欧美久久一区| 奇米影视一区二区三区| 欧美日韩一区二区电影| 亚洲一级在线观看| 欧美影院午夜播放| 亚洲一卡二卡三卡四卡无卡久久 | a级高清视频欧美日韩| 久久青草国产手机看片福利盒子 | 亚洲国产精品影院| 在线免费不卡视频| 一区二区三区在线播| 97se亚洲国产综合自在线不卡| 国产精品视频观看| 成年人午夜久久久| 综合婷婷亚洲小说| 色综合色狠狠天天综合色| 18欧美乱大交hd1984| 99精品国产99久久久久久白柏| 国产精品美女久久久久久2018| 成人av资源下载| 中文字幕视频一区二区三区久| 成人av资源站| 一区二区三区在线视频免费| 欧洲亚洲国产日韩| 亚洲国产精品视频| 欧美一区二区三区在线视频| 久久精品72免费观看| 亚洲精品在线电影| 成人永久aaa| 亚洲精品伦理在线| 欧美日韩aaaaa| 麻豆精品在线视频| 国产片一区二区三区| 97久久超碰国产精品| 亚洲成av人片在线| 欧美电影免费观看高清完整版在线 | av不卡在线观看| 亚洲精品乱码久久久久久日本蜜臀| 欧美日韩一区在线观看| 免费精品99久久国产综合精品| 精品国产一区二区亚洲人成毛片| 日本亚洲一区二区| 久久众筹精品私拍模特| 国产精品自产自拍| 一区二区在线免费| 欧美女孩性生活视频| 免费高清成人在线| 国产日韩欧美精品综合| 欧美三级三级三级爽爽爽| 日韩高清不卡在线| 精品国产乱码久久久久久1区2区| 成人精品免费视频| 洋洋成人永久网站入口| 精品国产麻豆免费人成网站| 国产成人免费视频精品含羞草妖精| 亚洲免费av网站| 制服丝袜国产精品| 不卡一区二区在线| 精品国产亚洲一区二区三区在线观看| 成人免费av资源| 日韩 欧美一区二区三区| 久久这里只有精品6| 日本丶国产丶欧美色综合| 日韩二区在线观看| 中文字幕一区二区三区四区| 欧美午夜精品久久久久久孕妇| 麻豆精品视频在线观看视频| 久久精品一区二区三区四区| 欧美在线视频你懂得| 久久99国产精品久久| 午夜久久福利影院| 久久免费精品国产久精品久久久久| www.色综合.com| 蜜臀av亚洲一区中文字幕| 久久品道一品道久久精品| 欧美日韩在线三级| 成人黄色软件下载| 免费黄网站欧美| 亚洲一区二区视频在线| 欧美精品一区二| 欧美精品一级二级三级| 成人激情动漫在线观看| 久久99国产精品麻豆| 婷婷丁香激情综合| 国产精品丝袜91| 精品国产乱码久久久久久老虎| 一本色道久久综合亚洲91| 国产黑丝在线一区二区三区| 亚洲午夜一区二区三区| 成人免费在线播放视频| 日韩女优av电影| 777色狠狠一区二区三区| 色婷婷久久99综合精品jk白丝| 国模娜娜一区二区三区| 美女一区二区在线观看| 亚洲自拍偷拍九九九| 亚洲色欲色欲www| 久久夜色精品一区| 欧美大片一区二区| 欧美一卡在线观看| 欧美色手机在线观看| 日本韩国精品在线|