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

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

?? spring.ftl

?? 為公司做的質量考核接口源碼,用spring,hibernate,XML實現,對XML接口編程很有幫助
?? 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一区二区三区免费野_久草精品视频
国产精品国产三级国产普通话蜜臀| 91亚洲精品一区二区乱码| 亚洲精品视频免费观看| 国产精品麻豆视频| 国产欧美一区二区精品秋霞影院| 欧美va亚洲va在线观看蝴蝶网| 日韩欧美视频一区| 26uuu亚洲综合色欧美| 久久精品网站免费观看| 国产精品久久久久久久久快鸭| 亚洲国产电影在线观看| 中文字幕永久在线不卡| 自拍偷自拍亚洲精品播放| 一区二区三区色| 偷拍亚洲欧洲综合| 奇米影视一区二区三区小说| 日本aⅴ亚洲精品中文乱码| 激情五月激情综合网| 成人午夜免费视频| 91麻豆国产自产在线观看| 欧美日韩国产首页| 久久嫩草精品久久久久| 亚洲男同性视频| 日韩电影在线一区二区三区| 国模套图日韩精品一区二区| www.在线欧美| 欧美日韩另类一区| 日本一区二区三区dvd视频在线| 亚洲天堂精品在线观看| 免费成人在线播放| 成人精品一区二区三区四区| 日本韩国视频一区二区| 欧美成人精品高清在线播放 | 五月天欧美精品| 国产在线观看免费一区| 91麻豆swag| 精品国产一区久久| 一区二区三区国产精华| 韩国v欧美v日本v亚洲v| 欧美视频第二页| 国产精品视频麻豆| 日韩精品免费专区| 99国产精品久久久久久久久久久| 91精品国产乱码| 亚洲视频免费在线| 国产精品一二三在| 欧美久久久一区| 亚洲少妇30p| 国产乱子轮精品视频| 欧美日本精品一区二区三区| 国产精品免费久久| 国产尤物一区二区| 欧美一区二区三区视频免费| 亚洲欧美另类久久久精品| 国内精品视频666| 欧美一级欧美三级| 午夜婷婷国产麻豆精品| 91亚洲永久精品| 中文字幕巨乱亚洲| 国产91丝袜在线播放九色| 欧美一区二区在线播放| 亚洲图片欧美色图| 99国产精品一区| 成人欧美一区二区三区在线播放| 久久精品国产免费看久久精品| 欧美日韩在线观看一区二区| 中文字幕亚洲在| 国产福利精品导航| 国产目拍亚洲精品99久久精品| 国内精品写真在线观看| 精品国产一区二区亚洲人成毛片| 日韩不卡一区二区三区| 在线综合视频播放| 蜜臀av性久久久久蜜臀av麻豆| 欧美一区二区久久久| 亚洲国产精品久久不卡毛片| 欧美亚洲综合久久| 亚洲成人综合网站| 日韩欧美你懂的| 国产老妇另类xxxxx| 国产日韩欧美综合一区| 成人午夜免费电影| 亚洲色图欧洲色图| 欧美日韩免费高清一区色橹橹 | 欧美调教femdomvk| 亚洲第一搞黄网站| 日韩欧美资源站| 国产精品一区二区无线| 欧美激情一区不卡| 一本到一区二区三区| 亚洲一二三级电影| 日韩一区二区精品在线观看| 免费成人美女在线观看.| 亚洲精品在线电影| 99久久精品免费观看| 亚洲综合视频在线观看| 欧美videos大乳护士334| 成人免费视频视频在线观看免费 | 91丨porny丨中文| 亚洲国产视频一区二区| 日韩一区二区三区在线| 丁香五精品蜜臀久久久久99网站| 亚洲欧美一区二区不卡| 欧美福利一区二区| 国产精品99久久久久久宅男| 一区二区三区精品在线| 欧美精品一区男女天堂| 91在线视频免费91| 久久精品国产99国产精品| 中文字幕欧美日韩一区| 7777精品伊人久久久大香线蕉超级流畅| 国产综合久久久久影院| 日韩美女视频19| 欧美大片国产精品| 一本到三区不卡视频| 国产裸体歌舞团一区二区| 亚洲综合另类小说| 欧美精品一区二区在线播放| 欧美亚洲一区三区| 国产乱子伦视频一区二区三区| 一区二区在线观看不卡| 久久理论电影网| 精品污污网站免费看| av一区二区不卡| 狠狠色丁香久久婷婷综合丁香| 亚洲女厕所小便bbb| 久久久久久久精| 欧美高清hd18日本| 91丨九色丨蝌蚪富婆spa| 国产精品资源在线看| 偷拍亚洲欧洲综合| 一区二区成人在线| 一色屋精品亚洲香蕉网站| 欧美电视剧在线看免费| 欧美久久久一区| 欧美日韩一区二区三区视频| av色综合久久天堂av综合| 国内精品国产成人国产三级粉色| 亚洲午夜在线视频| 夜色激情一区二区| 亚洲欧美国产77777| 国产精品系列在线| 久久精品人人做| 精品国产人成亚洲区| 91精品久久久久久蜜臀| 欧美三片在线视频观看 | 欧美日韩成人激情| 色一情一伦一子一伦一区| 99视频精品在线| 国产98色在线|日韩| 国产91精品一区二区麻豆网站 | 亚洲精品videosex极品| 国产精品久久久久久一区二区三区 | 男人操女人的视频在线观看欧美| 亚洲香蕉伊在人在线观| 亚洲一区二区三区在线看| 亚洲国产精品99久久久久久久久| 欧美激情一区二区三区不卡| 国产拍揄自揄精品视频麻豆| 国产欧美va欧美不卡在线| 国产目拍亚洲精品99久久精品| 日本一区二区三区四区在线视频 | 久久久综合视频| 国产精品入口麻豆九色| 亚洲国产激情av| 亚洲视频狠狠干| 亚瑟在线精品视频| 日本在线观看不卡视频| 伦理电影国产精品| 国产永久精品大片wwwapp | 亚洲成a人片综合在线| 丝袜诱惑制服诱惑色一区在线观看| 日韩精品免费视频人成| 欧美国产精品专区| 91在线你懂得| 成人三级在线视频| 色婷婷综合久色| 91精品一区二区三区在线观看| 欧美变态tickle挠乳网站| 国产亚洲女人久久久久毛片| 国产精品日日摸夜夜摸av| 亚洲一区视频在线| 精品一区二区在线看| av在线播放成人| 在线综合亚洲欧美在线视频| 久久久噜噜噜久久人人看| 亚洲免费视频成人| 免费在线一区观看| 成人深夜在线观看| 91麻豆精品国产91久久久更新时间| 久久久久久久国产精品影院| 亚洲精品第1页| 久久 天天综合| 在线欧美日韩精品| 国产欧美精品一区| 五月天丁香久久| 色呦呦国产精品| 亚洲国产精品激情在线观看| 亚洲一线二线三线视频| 成人a免费在线看|