亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
伊人性伊人情综合网| 日本韩国欧美一区| 欧美一区二区三区免费视频| 亚洲另类春色校园小说| 国产精品美女久久久久av爽李琼 | 亚洲色图制服诱惑 | 国产精品剧情在线亚洲| 国产成人免费在线视频| 久久精品欧美日韩| 成人免费高清在线观看| 精品国偷自产国产一区| 成人av第一页| 国产精品成人免费精品自在线观看| 丰满白嫩尤物一区二区| 中文字幕欧美国产| www.av精品| 一卡二卡欧美日韩| 欧美日韩黄色影视| 日本美女视频一区二区| 日韩精品自拍偷拍| 福利一区在线观看| 一区二区三区在线视频免费| 色8久久精品久久久久久蜜| 亚洲一区二区三区精品在线| 欧美日韩国产天堂| 久久se精品一区二区| 久久精品水蜜桃av综合天堂| 成人激情小说乱人伦| 国产精品久99| 欧美一区二区三区婷婷月色| 韩日精品视频一区| 日韩伦理电影网| 欧美偷拍一区二区| 成人午夜电影网站| 亚洲三级在线播放| 日韩午夜精品电影| 懂色av一区二区在线播放| 亚洲欧洲制服丝袜| 久久女同性恋中文字幕| 97久久精品人人澡人人爽| 天堂精品中文字幕在线| 久久综合中文字幕| 欧美在线观看一二区| 成人午夜在线免费| 青青草原综合久久大伊人精品| 中文字幕av在线一区二区三区| 在线观看欧美黄色| 精品在线你懂的| 亚州成人在线电影| 欧美国产欧美综合| 欧美精品久久99久久在免费线| 国产精品99久久久久久宅男| 亚洲在线成人精品| 亚洲男人的天堂在线观看| 日韩午夜在线影院| 欧美婷婷六月丁香综合色| 国产福利一区二区| 热久久免费视频| 亚洲愉拍自拍另类高清精品| 久久久91精品国产一区二区三区| 欧美亚洲日本国产| 成人午夜看片网址| 从欧美一区二区三区| 韩国女主播成人在线观看| 亚洲一区二区中文在线| 中文字幕 久热精品 视频在线 | 日本道精品一区二区三区| 丝袜美腿一区二区三区| 亚洲日本一区二区三区| 2023国产精华国产精品| 制服丝袜亚洲色图| 欧美视频三区在线播放| 久久国产欧美日韩精品| 免费精品视频在线| 亚洲一区二区欧美日韩| 最新国产の精品合集bt伙计| 久久久精品欧美丰满| 欧美日本在线播放| 欧美日韩免费观看一区二区三区 | 亚洲综合一区在线| 亚洲精品v日韩精品| 亚洲综合另类小说| 亚洲va韩国va欧美va精品| 亚洲高清在线视频| 香蕉久久一区二区不卡无毒影院 | 亚洲sss视频在线视频| 天堂蜜桃一区二区三区| 男女视频一区二区| 狠狠狠色丁香婷婷综合激情| 国产麻豆9l精品三级站| 粉嫩av一区二区三区| 99久久精品费精品国产一区二区| 色婷婷综合视频在线观看| 欧美日韩一区二区三区四区| 日韩视频一区在线观看| 日韩欧美美女一区二区三区| 精品少妇一区二区三区在线播放 | 亚洲无线码一区二区三区| 水野朝阳av一区二区三区| 另类的小说在线视频另类成人小视频在线 | 精品国产乱码久久久久久免费| 精品久久久久一区二区国产| 久久午夜羞羞影院免费观看| 日韩一区中文字幕| 天天影视涩香欲综合网| 国产一区二区三区在线观看免费 | 欧美性生活久久| 日韩午夜小视频| 国产精品久久久久影院色老大| 亚洲综合精品久久| 国产一区二区三区四区五区入口| 99久久777色| 欧美一区午夜视频在线观看| 久久一区二区三区国产精品| 亚洲精品亚洲人成人网 | 国产91精品久久久久久久网曝门| 91啪亚洲精品| 日韩久久久精品| 亚洲欧美激情一区二区| 激情伊人五月天久久综合| 一本到高清视频免费精品| 日韩女优制服丝袜电影| 亚洲日本中文字幕区| 久久成人免费日本黄色| 日本久久精品电影| 国产亚洲综合在线| 秋霞国产午夜精品免费视频| 97久久精品人人做人人爽| 欧美www视频| 婷婷综合五月天| 99久久精品免费看| 久久久久久久性| 亚洲成人av中文| 成人97人人超碰人人99| 日韩精品一区二区三区中文不卡 | 欧美不卡激情三级在线观看| 亚洲视频每日更新| 国产成人丝袜美腿| 日韩精品中午字幕| 五月综合激情婷婷六月色窝| 成年人午夜久久久| 国产三级一区二区三区| 免费视频最近日韩| 欧美日韩国产综合久久 | 三级久久三级久久久| 91在线高清观看| 欧美激情一区在线| 国产精品一区二区在线观看网站 | 久久精品一区蜜桃臀影院| 天天综合天天做天天综合| 色88888久久久久久影院野外| 欧美国产日韩在线观看| 国产在线日韩欧美| 欧美电影免费观看高清完整版在线 | 精品夜夜嗨av一区二区三区| 欧美性大战久久久久久久| 国产精品嫩草影院com| 国内成人免费视频| 欧美大片顶级少妇| 美女视频第一区二区三区免费观看网站| 色婷婷狠狠综合| 亚洲黄色尤物视频| 精品国产乱码久久久久久久久| 亚洲电影在线免费观看| 色婷婷av一区| 亚洲视频香蕉人妖| 91论坛在线播放| 亚洲视频一二区| 色婷婷综合中文久久一本| 一区二区三区日韩精品| 色婷婷av一区二区三区gif| 亚洲欧洲精品一区二区三区不卡| 成人不卡免费av| 亚洲乱码中文字幕| 在线观看91精品国产入口| 亚洲一区二区黄色| 欧美精品v日韩精品v韩国精品v| 日韩国产欧美在线视频| 欧美一区二区三区在线| 精品一区二区三区免费观看 | 亚洲综合成人在线| 欧美群妇大交群的观看方式| 日韩影院免费视频| 欧美不卡一区二区三区四区| 国精品**一区二区三区在线蜜桃 | 亚洲美女屁股眼交| 欧美日韩日本视频| 久久国产精品一区二区| 欧美韩国一区二区| 91精品办公室少妇高潮对白| 日韩一区精品视频| 国产亚洲1区2区3区| 色久优优欧美色久优优| 日韩国产欧美三级| 亚洲国产高清不卡| 欧美精品日韩一区| 国产精品亚洲视频| 一区二区三区四区亚洲| 欧美一级欧美三级在线观看| 国产精品白丝av|