struts2中simple主题下<s:fieldError>标签默认样式的移除方法

 更新时间:2018年10月11日 08:40:54   作者:努力学习的IT萌新  
这篇文章主要给大家介绍了关于struts2中simple主题下<s:fieldError>标签默认样式的移除方法,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面随着小编来一起学习学习吧

前言

当在我们注册用户时,如果给前台的提示是用户名重复并且用户名太长时,就会要往action里面添加多个errors,这时到前台怎么把它依次拿出来

下面话不多说了,来一起看看详细的介绍吧

方法如下

①找到配置文件

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/>
     <ul<#rt/>
      <#if parameters.id?has_content>
        id="${parameters.id?html}"<#rt/>
      </#if>
      <#if parameters.cssClass?has_content>
        class="${parameters.cssClass?html}"<#rt/>
       <#else>
        class="errorMessage"<#rt/>
      </#if>
      <#if parameters.cssStyle?has_content>
        style="${parameters.cssStyle?html}"<#rt/>
      </#if>
       >
      <#assign doneStartUlTag=true><#t/>
     </#if><#t/>
     <#list eValue as eEachValue><#t/>
      <li><span><#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if></span></li>
     </#list><#t/>
    </#if><#t/>
   </#list><#t/>
  </#list><#t/>
  <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
  </ul>
   <#assign doneEndUlTag=true><#t/>
  </#if><#t/>
  <#else><#t/>
  <#if (eKeysSize > 0)><#t/>
  <ul<#rt/>
   <#if parameters.cssClass?has_content>
     class="${parameters.cssClass?html}"<#rt/>
    <#else>
     class="errorMessage"<#rt/>
   </#if>
   <#if parameters.cssStyle?has_content>
     style="${parameters.cssStyle?html}"<#rt/>
   </#if>
    >
   <#list eKeys as eKey><#t/>
    <#assign eValue = fieldErrors[eKey]><#t/>
    <#list eValue as eEachValue><#t/>
     <li><span><#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if></span></li>
    </#list><#t/>
   </#list><#t/>
  </ul>
  </#if><#t/>
 </#if><#t/>
</#if><#t/>

将<ul></ul>、<li></li>、<span></span>删除

修改后文件如下

<#--
/*
 * $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/>
     </#if><#t/>
     <#list eValue as eEachValue><#t/>
      <#if parameters.escape>${eEachValue!?html}<#else>${eEachValue!}</#if>
     </#list><#t/>
    </#if><#t/>
   </#list><#t/>
  </#list><#t/>
  <#if (haveMatchedErrorField && (!doneEndUlTag))><#t/>
  
   <#assign doneEndUlTag=true><#t/>
  </#if><#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!}</#if>
    </#list><#t/>
   </#list><#t/>
  
  </#if><#t/>
 </#if><#t/>
</#if><#t/>

重启tomcat

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

相关文章

  • java中的类为什么只能用public修饰?

    java中的类为什么只能用public修饰?

    这篇文章主要介绍了java中的类为什么只能用public修饰,帮助大家更好的理解和使用Java,感兴趣的朋友可以了解下
    2020-12-12
  • Maven和IntelliJ IDEA搭建多模块微服务的实现

    Maven和IntelliJ IDEA搭建多模块微服务的实现

    本文主要介绍了Maven和IntelliJ IDEA搭建多模块微服务的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2024-05-05
  • Java中常见的4种限流算法详解

    Java中常见的4种限流算法详解

    这篇文章主要介绍了Java中常见的4种限流算法详解,FixedWindowRateLimiter 类表示一个固定窗口限流器,使用 limit 和 interval 参数分别表示限制请求数量和时间间隔,缺点是短时间内可能会流量翻倍,需要的朋友可以参考下
    2023-12-12
  • javaweb 项目初始配置的方法步骤

    javaweb 项目初始配置的方法步骤

    本文主要介绍了javaweb 项目初始配置的方法步骤,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-11-11
  • 基于java中正则操作的方法总结

    基于java中正则操作的方法总结

    本篇文章介绍了,在java中正则操作的方法总结。需要的朋友参考下
    2013-05-05
  • mybatis框架xml下trim中的prefix与suffix等标签的用法

    mybatis框架xml下trim中的prefix与suffix等标签的用法

    这篇文章主要介绍了mybatis框架xml下trim中的prefix与suffix等标签的用法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-07-07
  • 一文搞懂如何实现Java,Spring动态启停定时任务

    一文搞懂如何实现Java,Spring动态启停定时任务

    定时任务的应用场景十分广泛,如定时清理文件、定时生成报表、定时数据同步备份等。本文将教你实现Java、Spring动态启停定时任务,感兴趣的可以学习一下
    2022-06-06
  • 基于CopyOnWriteArrayList并发容器(实例讲解)

    基于CopyOnWriteArrayList并发容器(实例讲解)

    下面小编就为大家带来一篇基于CopyOnWriteArrayList并发容器(实例讲解)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-11-11
  • java虚拟机原理:类加载过程详解

    java虚拟机原理:类加载过程详解

    这篇文章主要介绍了Java中类加载过程全面解析,具有一定参考价值,需要的朋友可以了解下,希望能够给你带来帮助
    2021-09-09
  • springboot 监控管理模块搭建的方法

    springboot 监控管理模块搭建的方法

    本篇文章主要介绍了springboot 监控管理模块搭建的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2018-03-03

最新评论