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

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

?? spring.ftl

?? struts+spring 源碼 希望能給大家帶來幫助
?? FTL
字號:
<#ftl strip_whitespace=true><#-- * 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?html}</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?html}"<@checkSelected value/>>${options[value]?html}</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?html}" <#if isSelected>selected="selected"</#if>>${options[value]?html}</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>    <#assign id="${status.expression}${value_index}">    <input type="radio" id="${id}" name="${status.expression}" value="${value?html}"        <#if stringStatusValue == value>checked="checked"</#if> ${attributes}    <@closeTag/>    <label for="${id}">${options[value]?html}</label>${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 id="${status.expression}${value_index}">    <#assign isSelected = contains(status.value?default([""]), value)>    <input type="checkbox" id="${id}" name="${status.expression}" value="${value?html}"        <#if isSelected>checked="checked"</#if> ${attributes}    <@closeTag/>    <label for="${id}">${options[value]?html}</label>${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一区二区三区免费野_久草精品视频
日本亚洲最大的色成网站www| 免费观看在线综合| 五月综合激情日本mⅴ| 久久精品国产第一区二区三区| 一本色道综合亚洲| 国产色综合久久| 免费国产亚洲视频| 欧美日韩一区二区在线观看 | 国产不卡在线视频| 51精品视频一区二区三区| 1区2区3区国产精品| 国产一区啦啦啦在线观看| 5566中文字幕一区二区电影| 国产精品国产三级国产专播品爱网 | av日韩在线网站| 久久综合狠狠综合| 青草av.久久免费一区| 欧美图区在线视频| 亚洲免费在线视频一区 二区| 国产一区欧美一区| 精品国产麻豆免费人成网站| 水野朝阳av一区二区三区| 色视频成人在线观看免| 国产精品热久久久久夜色精品三区 | 青青草一区二区三区| 欧美系列在线观看| 亚洲一区二区av在线| 91色porny| 一区二区三区在线视频免费| 91视频在线观看| ...xxx性欧美| 91蝌蚪porny| 亚洲视频一区在线观看| 91视频xxxx| 亚洲欧美日韩国产一区二区三区| 国产高清不卡二三区| 久久久99精品免费观看不卡| 国产91综合一区在线观看| 日本一区二区三区电影| 从欧美一区二区三区| 国产精品久久久久影院老司| 91在线视频网址| 亚洲最快最全在线视频| 欧美网站一区二区| 日韩电影在线免费看| 精品国产免费人成电影在线观看四季| 狠狠色狠狠色综合| 亚洲国产精品精华液ab| 一本色道久久综合亚洲aⅴ蜜桃| 亚洲视频在线观看三级| 欧美日韩国产精品自在自线| 日韩精品欧美精品| 国产日韩欧美不卡在线| 91片在线免费观看| 日韩专区在线视频| 久久亚洲精品小早川怜子| www.成人在线| 图片区小说区区亚洲影院| 欧美成人vps| 99re视频这里只有精品| 午夜精品视频在线观看| 久久精品人人做| 色爱区综合激月婷婷| 美女网站在线免费欧美精品| 国产欧美一区二区精品秋霞影院| av不卡免费电影| 天堂精品中文字幕在线| 欧美国产日韩亚洲一区| 欧美日韩国产大片| 国产福利91精品一区二区三区| 亚洲免费观看高清完整| 日韩欧美国产电影| 色噜噜偷拍精品综合在线| 久草这里只有精品视频| 亚洲美女视频在线| 久久网这里都是精品| 欧美三片在线视频观看 | 2020日本不卡一区二区视频| 91在线视频官网| 国模冰冰炮一区二区| 亚洲主播在线观看| 亚洲精品一区二区精华| 在线观看视频91| 国产一区二区伦理片| 夜夜爽夜夜爽精品视频| 国产精品少妇自拍| 91精品国产91综合久久蜜臀| 99久久777色| 国产精品1024| 日韩精品午夜视频| 亚洲码国产岛国毛片在线| 久久久亚洲国产美女国产盗摄| 欧美日韩国产综合草草| 色综合色狠狠综合色| 国产福利不卡视频| 精品一区二区在线视频| 亚洲一区二区三区四区不卡| 中文字幕欧美激情| 久久久久成人黄色影片| 欧美一区二区视频在线观看2022 | 欧美一区二区三区免费大片| 日本高清视频一区二区| aaa欧美色吧激情视频| 国产不卡一区视频| 国精产品一区一区三区mba视频 | 欧美极品美女视频| 精品国精品国产| 日韩欧美国产一区二区三区| 在线综合亚洲欧美在线视频| 欧美午夜一区二区三区免费大片| caoporm超碰国产精品| www.色综合.com| www.综合网.com| 成人国产精品免费观看视频| 国产精品亚洲第一区在线暖暖韩国 | av电影天堂一区二区在线| 成人国产精品免费观看动漫 | 91精品国产综合久久精品 | 青草国产精品久久久久久| 日本欧美久久久久免费播放网| 香港成人在线视频| 婷婷夜色潮精品综合在线| 天天av天天翘天天综合网色鬼国产 | 国产精品996| 成人激情av网| 色婷婷av一区| 欧美视频在线观看一区二区| 欧美日韩在线直播| 91精品久久久久久久久99蜜臂| 91精品国产乱| 久久久精品国产免费观看同学| 国产肉丝袜一区二区| 亚洲欧美另类在线| 亚洲一区二区三区三| 日韩1区2区3区| 国产精品综合一区二区三区| 成人综合激情网| 色哟哟一区二区在线观看| 欧美另类高清zo欧美| 26uuu成人网一区二区三区| 欧美国产激情一区二区三区蜜月 | 欧美主播一区二区三区| 欧美日韩国产综合一区二区| 久久综合九色综合欧美亚洲| 国产精品三级久久久久三级| 亚洲丰满少妇videoshd| 狠狠v欧美v日韩v亚洲ⅴ| 成人免费视频国产在线观看| 一本一道久久a久久精品| 日韩视频一区二区三区| 久久久三级国产网站| 一卡二卡欧美日韩| 美美哒免费高清在线观看视频一区二区| 久久av中文字幕片| 一本色道综合亚洲| 久久综合色播五月| 一区二区三区在线影院| 国产一区二区在线看| 在线精品亚洲一区二区不卡| 欧美精品一区二区三区在线播放| √…a在线天堂一区| 激情综合五月婷婷| 欧美日韩一区二区三区免费看 | 欧美特级限制片免费在线观看| 精品国产乱码久久久久久久久| 国产精品美女久久福利网站| 日韩电影免费在线| 91豆麻精品91久久久久久| 精品国产一区二区精华| 亚洲成在人线免费| 91在线视频播放地址| 久久综合成人精品亚洲另类欧美 | 夜夜嗨av一区二区三区| 国产成人h网站| 欧美成人女星排名| 亚洲成人免费影院| voyeur盗摄精品| 久久伊人蜜桃av一区二区| 午夜精品久久久久久久| 91丝袜美女网| 国产精品三级电影| 国产精品18久久久久久vr| 欧美一级片在线看| 午夜精品成人在线| 91久久免费观看| 中文字幕中文字幕中文字幕亚洲无线| 久久精品国产77777蜜臀| 精品视频免费在线| 亚洲国产精品嫩草影院| 99精品视频一区二区三区| 国产欧美一区二区三区在线看蜜臀| 天堂资源在线中文精品| 欧美日韩精品一区二区在线播放| 综合久久一区二区三区| 国产白丝精品91爽爽久久| 精品国产一二三区| 久久毛片高清国产| 国产一二三精品| 欧美mv日韩mv| 国产在线不卡一区|