最近2018中文字幕在日韩欧美国产成人片_国产日韩精品一区二区在线_在线观看成年美女黄网色视频_国产精品一区三区五区_国产精彩刺激乱对白_看黄色黄大色黄片免费_人人超碰自拍cao_国产高清av在线_亚洲精品电影av_日韩美女尤物视频网站

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
struts2中如何移除simple主題下<s:fieldError>標(biāo)簽?zāi)J樣式

這篇文章主要介紹了struts2中如何移除simple主題下標(biāo)簽?zāi)J樣式,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

從策劃到設(shè)計制作,每一步都追求做到細膩,制作可持續(xù)發(fā)展的企業(yè)網(wǎng)站。為客戶提供成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、網(wǎng)站策劃、網(wǎng)頁設(shè)計、主機域名虛擬主機、網(wǎng)絡(luò)營銷、VI設(shè)計、 網(wǎng)站改版、漏洞修補等服務(wù)。為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(fā)展進步。

方法如下

①找到配置文件

struts2-core-2.3.35.jar/template/simple/fielderror.ftl(不同版本的文件路徑大同小異)

②創(chuàng)建新的文件包并拷貝文件

在項目根目錄下創(chuàng)建template.simple并將fielderror.ftl拷貝過來

此時根目錄下的fielderror.ftl文件優(yōu)先權(quán)大于默認的fielderror.ftl文件

③修改拷貝過來的fielderror.ftl文件

修改前文件如下

<#--
/*
 * $Id$
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->
<#if fieldErrors??><#t/>
 <#assign eKeys = fieldErrors.keySet()><#t/>
 <#assign eKeysSize = eKeys.size()><#t/>
 <#assign doneStartUlTag=false><#t/>
 <#assign doneEndUlTag=false><#t/>
 <#assign haveMatchedErrorField=false><#t/>
 <#if (fieldErrorFieldNames?size > 0) ><#t/>
  <#list fieldErrorFieldNames as fieldErrorFieldName><#t/>
   <#list eKeys as eKey><#t/>
    <#if (eKey = fieldErrorFieldName)><#t/>
     <#assign haveMatchedErrorField=true><#t/>
     <#assign eValue = fieldErrors[fieldErrorFieldName]><#t/>
     <#if (haveMatchedErrorField && (!doneStartUlTag))><#t/>
     
      <#if parameters.id?has_content>
        id="${parameters.id?html}"<#rt/>
      
      <#if parameters.cssClass?has_content>
        class="${parameters.cssClass?html}"<#rt/>
       <#else>
        class="errorMessage"<#rt/>
      
      <#if parameters.cssStyle?has_content>
        <#rt/>
      
       >
      <#assign doneStartUlTag=true><#t/>
     <#t/>
     <#list eValue as eEachValue><#t/>
      
  • <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}
  •      <#t/>     <#t/>    <#t/>   <#t/>   <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>       <#assign doneEndUlTag=true><#t/>   <#t/>   <#else><#t/>   <#if (eKeysSize > 0)><#t/>       <#if parameters.cssClass?has_content>      class="${parameters.cssClass?html}"<#rt/>     <#else>      class="errorMessage"<#rt/>        <#if parameters.cssStyle?has_content>      <#rt/>         >    <#list eKeys as eKey><#t/>     <#assign eValue = fieldErrors[eKey]><#t/>     <#list eValue as eEachValue><#t/>      
  • <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}
  •     <#t/>    <#t/>      <#t/>  <#t/> <#t/>

    • 、刪除

      修改后文件如下

      <#--
      /*
       * $Id$
       *
       * Licensed to the Apache Software Foundation (ASF) under one
       * or more contributor license agreements. See the NOTICE file
       * distributed with this work for additional information
       * regarding copyright ownership. The ASF licenses this file
       * to you under the Apache License, Version 2.0 (the
       * "License"); you may not use this file except in compliance
       * with the License. You may obtain a copy of the License at
       *
       * http://www.apache.org/licenses/LICENSE-2.0
       *
       * Unless required by applicable law or agreed to in writing,
       * software distributed under the License is distributed on an
       * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
       * KIND, either express or implied. See the License for the
       * specific language governing permissions and limitations
       * under the License.
       */
      -->
      <#if fieldErrors??><#t/>
       <#assign eKeys = fieldErrors.keySet()><#t/>
       <#assign eKeysSize = eKeys.size()><#t/>
       <#assign doneStartUlTag=false><#t/>
       <#assign doneEndUlTag=false><#t/>
       <#assign haveMatchedErrorField=false><#t/>
       <#if (fieldErrorFieldNames?size > 0) ><#t/>
        <#list fieldErrorFieldNames as fieldErrorFieldName><#t/>
         <#list eKeys as eKey><#t/>
          <#if (eKey = fieldErrorFieldName)><#t/>
           <#assign haveMatchedErrorField=true><#t/>
           <#assign eValue = fieldErrors[fieldErrorFieldName]><#t/>
           <#if (haveMatchedErrorField && (!doneStartUlTag))><#t/>
           
            <#assign doneStartUlTag=true><#t/>
           <#t/>
           <#list eValue as eEachValue><#t/>
            <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}
           <#t/>
          <#t/>
         <#t/>
        <#t/>
        <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
        
         <#assign doneEndUlTag=true><#t/>
        <#t/>
        <#else><#t/>
        <#if (eKeysSize > 0)><#t/>
        
         <#list eKeys as eKey><#t/>
          <#assign eValue = fieldErrors[eKey]><#t/>
          <#list eValue as eEachValue><#t/>
           <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}
          <#t/>
         <#t/>
        
        <#t/>
       <#t/>
      <#t/>

      重啟tomcat

      感謝你能夠認真閱讀完這篇文章,希望小編分享的“struts2中如何移除simple主題下標(biāo)簽?zāi)J樣式”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!


      當(dāng)前標(biāo)題:struts2中如何移除simple主題下<s:fieldError>標(biāo)簽?zāi)J樣式
      轉(zhuǎn)載注明:http://fisionsoft.com.cn/article/jgchji.html