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

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

?? spring.ftl

?? Spring源代碼,開源的srcorgspringframeworkwebmultipartMultipartFile.java MVC上傳文件
?? 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一区二区三区免费野_久草精品视频
午夜免费久久看| 久久女同互慰一区二区三区| 欧美欧美欧美欧美| 日韩欧美一二区| 国产精品视频麻豆| 亚洲成av人**亚洲成av**| 精品综合久久久久久8888| 成人免费不卡视频| 91精品国产美女浴室洗澡无遮挡| 久久精品一区二区三区不卡| 亚洲欧美日韩国产一区二区三区| 亚洲 欧美综合在线网络| 国产精品中文字幕一区二区三区| 91色视频在线| 精品国产91亚洲一区二区三区婷婷| 国产无人区一区二区三区| 亚洲午夜久久久久中文字幕久| 狠狠色丁香久久婷婷综合丁香| caoporen国产精品视频| 首页亚洲欧美制服丝腿| 成人免费观看av| 欧美一区二区视频免费观看| 综合分类小说区另类春色亚洲小说欧美| 亚洲激情综合网| 国产麻豆精品theporn| 欧洲色大大久久| 国产三级久久久| 午夜一区二区三区视频| 成人黄色片在线观看| 欧美一区二区黄色| 一区二区三区波多野结衣在线观看| 国产一区二区不卡在线| 欧美日韩中字一区| 亚洲欧洲日韩综合一区二区| 国内精品伊人久久久久av一坑 | 精品久久久久久久久久久久久久久 | 一区二区三区免费在线观看| 国产乱人伦偷精品视频免下载 | 蜜臀精品久久久久久蜜臀| 色88888久久久久久影院按摩| 精品国产99国产精品| 日韩精品一二区| 欧美亚洲日本国产| 亚洲欧美综合色| 国产成人在线观看免费网站| 欧美电影免费观看高清完整版在 | 在线电影一区二区三区| 又紧又大又爽精品一区二区| 懂色av噜噜一区二区三区av| 精品成人在线观看| 蜜桃久久av一区| 欧美一区二区二区| 日日骚欧美日韩| 欧美三级电影在线看| 一区二区日韩电影| 91高清视频免费看| 亚洲欧美日韩成人高清在线一区| 粉嫩av一区二区三区| 国产午夜亚洲精品不卡| 国产乱码字幕精品高清av| 精品国产一二三| 精品一区二区在线看| 91精品国产免费久久综合| 日韩成人午夜精品| 欧美一区二区三区在| 免费观看91视频大全| 欧美一区二区精品在线| 91麻豆精品国产91久久久更新时间| 亚洲香肠在线观看| 欧美做爰猛烈大尺度电影无法无天| 一区二区三区在线影院| 欧美中文字幕久久| 亚洲国产欧美另类丝袜| 欧美精三区欧美精三区| 天堂一区二区在线| 日韩精品一区二区三区三区免费 | 久久综合色综合88| 国内精品免费在线观看| 久久久国际精品| 成人毛片老司机大片| 亚洲欧美日韩在线播放| 91高清视频免费看| 日韩国产精品久久久| 精品对白一区国产伦| 国产乱人伦精品一区二区在线观看| 国产亚洲精品久| 99re8在线精品视频免费播放| 亚洲精品乱码久久久久久黑人 | 日韩精品一级中文字幕精品视频免费观看 | 久久精品欧美日韩精品| 高清不卡一区二区在线| 亚洲视频 欧洲视频| 欧美伊人久久久久久午夜久久久久| 丝袜诱惑制服诱惑色一区在线观看| 欧美一区二区三区在线观看| 国产毛片精品国产一区二区三区| 国产精品视频线看| 欧美调教femdomvk| 精彩视频一区二区| 亚洲欧洲精品天堂一级| 欧美三级韩国三级日本三斤| 看电视剧不卡顿的网站| 国产精品亲子伦对白| 欧美在线短视频| 精品一区二区在线视频| 亚洲人成人一区二区在线观看| 欧美日韩二区三区| 国产精品亚洲一区二区三区妖精 | 欧美系列亚洲系列| 久久国产精品区| 国产精品国产三级国产有无不卡 | 日本欧美一区二区| 国产农村妇女精品| 欧美日韩午夜影院| 成人性生交大片| 午夜精品影院在线观看| 国产日产亚洲精品系列| 欧美性猛交xxxx黑人交| 韩国三级在线一区| 亚洲免费伊人电影| 精品国产免费人成在线观看| 97国产一区二区| 久99久精品视频免费观看| 亚洲人吸女人奶水| 久久午夜老司机| 午夜精品免费在线观看| 国产精品少妇自拍| 欧美一区二区精品| 91久久精品午夜一区二区| 激情综合色播五月| 午夜精品一区在线观看| 国产精品国产三级国产| 3atv一区二区三区| 99久久免费精品| 国产乱码精品一区二区三区av | 在线播放国产精品二区一二区四区| 国产一区不卡在线| 天天操天天干天天综合网| 中文字幕在线一区二区三区| 欧美一区二区三区白人| 色哟哟欧美精品| 国产精品1区二区.| 美腿丝袜一区二区三区| 亚洲午夜三级在线| 亚洲少妇中出一区| 中文字幕的久久| 精品国产乱码久久久久久影片| 欧美伊人久久久久久午夜久久久久| 懂色av一区二区三区免费看| 激情久久五月天| 日本va欧美va精品发布| 亚洲一区二区在线播放相泽| 国产精品蜜臀av| 精品成人一区二区三区| 欧美一区二区三区影视| 欧美精品一卡两卡| 欧洲视频一区二区| 色婷婷国产精品综合在线观看| 粉嫩av一区二区三区在线播放| 精品一二线国产| 免费成人小视频| 丝瓜av网站精品一区二区 | 6080yy午夜一二三区久久| 欧美亚洲禁片免费| 91国偷自产一区二区使用方法| aaa亚洲精品| 99在线热播精品免费| 成人短视频下载| 国产91在线看| 国产成人亚洲综合色影视| 国产一区激情在线| 国产在线不卡一区| 久久99精品国产麻豆婷婷洗澡| 日韩成人午夜电影| 麻豆中文一区二区| 久久99精品久久久久| 激情综合色综合久久| 韩国在线一区二区| 国产精品亚洲а∨天堂免在线| 狠狠色丁香婷婷综合久久片| 久草这里只有精品视频| 国产中文字幕精品| 国产成人在线视频免费播放| 国产丶欧美丶日本不卡视频| 国产·精品毛片| 不卡的av电影在线观看| 91在线一区二区三区| 色乱码一区二区三区88| 欧美色国产精品| 欧美一级欧美一级在线播放| 欧美一区二区三区人| 欧美精品一区二区三| 久久久99久久| 中文字幕在线免费不卡| 一区二区视频免费在线观看| 亚洲一区二区欧美激情| 日韩精品亚洲一区二区三区免费| 久久狠狠亚洲综合| 懂色av中文一区二区三区| 色综合中文字幕国产|