028-86922220

建站动态

根据您的个性需求进行定制 先人一步 抢占小程序红利时代

struts2中如何移除simple主题下<s:fieldError>标签默认样式

这篇文章主要介绍了struts2中如何移除simple主题下标签默认样式,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

从策划到设计制作,每一步都追求做到细腻,制作可持续发展的企业网站。为客户提供成都网站建设、网站设计、网站策划、网页设计、主机域名虚拟主机、网络营销、VI设计、 网站改版、漏洞修补等服务。为客户提供更好的一站式互联网解决方案,以客户的口碑塑造优易品牌,携手广大客户,共同发展进步。

方法如下

①找到配置文件

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

②创建新的文件包并拷贝文件

在项目根目录下创建template.simple并将fielderror.ftl拷贝过来

此时根目录下的fielderror.ftl文件优先权大于默认的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主题下标签默认样式”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!


    本文标题:struts2中如何移除simple主题下<s:fieldError>标签默认样式
    网页网址:http://www.tsicrk.com/article/jgchji.html

    其他资讯

    让你的专属顾问为你服务

    0.6665s