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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? spring.ftl

?? spring 范例spring與數(shù)據(jù)庫(kù)連接操作
?? FTL
字號(hào):
<#-- * 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>

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美国产欧美综合| 国产成人在线色| 亚洲一区二区三区在线播放| 亚洲视频一区在线| 亚洲猫色日本管| 亚洲色图在线视频| 一区二区三区免费| 亚洲成人免费看| 五月天亚洲精品| 青青青伊人色综合久久| 麻豆中文一区二区| 国产精品一色哟哟哟| 国产精品456| 成人h精品动漫一区二区三区| 成人免费福利片| 日本伦理一区二区| 欧美精品三级日韩久久| 欧美成人猛片aaaaaaa| 久久亚洲一区二区三区四区| 国产亚洲欧洲997久久综合 | 久久这里只有精品视频网| xvideos.蜜桃一区二区| 欧美国产精品一区二区三区| 成人免费小视频| 亚洲成人一区二区| 国产永久精品大片wwwapp| 成人性色生活片| 日本乱人伦一区| 欧美一二三区在线观看| 亚洲国产精品t66y| 亚洲六月丁香色婷婷综合久久| 亚洲国产一区二区三区青草影视| 日本成人在线一区| 国产精品一区二区免费不卡| 色综合久久精品| 日韩你懂的在线观看| 国产精品久久久久桃色tv| 亚洲第一电影网| 极品美女销魂一区二区三区免费 | 日韩一级在线观看| 久久久久久**毛片大全| 亚洲精品视频观看| 理论片日本一区| 97超碰欧美中文字幕| 欧美一区二区三区视频在线观看 | 亚洲一区二区在线观看视频| 久久精品久久99精品久久| 高清在线成人网| 51久久夜色精品国产麻豆| 国产视频在线观看一区二区三区| 亚洲老妇xxxxxx| 国产精品中文字幕一区二区三区| 一本大道久久精品懂色aⅴ| 欧美α欧美αv大片| 亚洲欧洲综合另类| 精品一区二区三区视频在线观看| 91免费版在线看| 久久嫩草精品久久久精品| 亚洲国产日韩a在线播放性色| 国产精品1区2区| 欧美二区三区的天堂| 亚洲视频每日更新| 国产综合成人久久大片91| 在线欧美日韩精品| 国产亚洲欧洲一区高清在线观看| 视频在线在亚洲| 色狠狠综合天天综合综合| xnxx国产精品| 美国十次了思思久久精品导航| 日本道在线观看一区二区| 国产三级一区二区三区| 日韩国产精品久久久久久亚洲| 91丨porny丨蝌蚪视频| 久久久久国色av免费看影院| 日韩高清不卡一区| 色网站国产精品| 久久久久久久一区| 青青草原综合久久大伊人精品优势| 色综合天天综合在线视频| 中文字幕精品一区二区精品绿巨人 | 亚洲成人动漫av| 99热这里都是精品| 欧美国产激情二区三区 | 色综合久久综合网97色综合| 日本一区二区三区在线不卡 | 欧美手机在线视频| 日韩码欧中文字| 成人不卡免费av| 欧美激情中文字幕一区二区| 久久国内精品自在自线400部| 69堂精品视频| 三级欧美在线一区| 欧美日韩情趣电影| 亚洲午夜精品网| 欧美在线一区二区三区| 樱花草国产18久久久久| 色综合色综合色综合| 亚洲欧美一区二区三区久本道91| 成人在线视频一区| 国产精品成人网| 不卡av在线网| 亚洲美女屁股眼交| 91久久精品一区二区| 亚洲一区二区三区四区中文字幕| 欧洲精品一区二区三区在线观看| 亚洲精品伦理在线| 欧美午夜电影网| 日本成人超碰在线观看| 欧美成人三级电影在线| 国产精品一区专区| 国产精品久久三区| 一本一道波多野结衣一区二区| 夜夜精品视频一区二区 | 自拍偷拍国产精品| 91黄色在线观看| 亚洲一区二区三区激情| 欧美精品v日韩精品v韩国精品v| 亚洲一区二区三区美女| 91精品国产福利在线观看 | 欧美日韩精品专区| 三级久久三级久久久| 精品国产电影一区二区| 国产一区二区免费在线| 国产精品进线69影院| 在线观看国产日韩| 免费看日韩精品| 欧美精品一区二区高清在线观看| 国产二区国产一区在线观看| 中文字幕av不卡| 在线观看成人小视频| 青青草国产精品97视觉盛宴| 精品sm在线观看| k8久久久一区二区三区 | 色94色欧美sute亚洲13| 日韩激情视频在线观看| 国产欧美综合在线| 91国偷自产一区二区三区观看| 日韩国产高清影视| 久久久精品免费免费| 色狠狠色狠狠综合| 久久精品二区亚洲w码| 中文字幕一区二区三区不卡在线| 欧美日韩一区二区三区四区五区| 日本麻豆一区二区三区视频| 国产欧美一区二区三区鸳鸯浴 | 337p日本欧洲亚洲大胆精品| av不卡免费在线观看| 亚洲成av人片www| 久久久国际精品| 欧美综合视频在线观看| 韩国av一区二区三区四区 | 成人性生交大合| 日韩一区精品字幕| 国产精品美女一区二区在线观看| 911精品国产一区二区在线| 国产精品一区二区男女羞羞无遮挡| 亚洲一级二级三级在线免费观看| 久久综合九色综合欧美98| 91黄色激情网站| 粉嫩av一区二区三区粉嫩 | 717成人午夜免费福利电影| 粉嫩aⅴ一区二区三区四区| 丝袜亚洲另类丝袜在线| 国产精品欧美久久久久一区二区| 777午夜精品免费视频| av亚洲产国偷v产偷v自拍| 久久99精品久久久久久动态图| 一区二区三区免费| 国产精品久久久久一区| 精品美女一区二区| 欧美三级视频在线播放| av在线一区二区三区| 国内精品免费**视频| 首页亚洲欧美制服丝腿| 亚洲精品成a人| 中文字幕乱码日本亚洲一区二区 | 午夜精品久久久久| 国产精品久久久久久久久免费桃花| 欧美一区二区三区免费| 欧美性受xxxx黑人xyx性爽| 成人sese在线| 国产麻豆精品95视频| 蜜臀久久99精品久久久久久9| 亚洲综合区在线| 亚洲精品国产视频| 日韩毛片一二三区| 国产精品久久影院| 国产精品日产欧美久久久久| 久久综合av免费| 精品99久久久久久| 日韩免费一区二区| 日韩三区在线观看| 91精品国产综合久久福利软件| 欧美日韩在线综合| 欧美日韩卡一卡二| 欧美日韩大陆在线| 欧美日韩不卡视频| 欧美日韩黄色一区二区| 欧美性猛交xxxxxx富婆| 91麻豆免费观看|