博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts2 系列问题一
阅读量:6835 次
发布时间:2019-06-26

本文共 662 字,大约阅读时间需要 2 分钟。

最近 项目中使用Struts2发现如下问题

1.页面跳转 

在struts配置文件采用如下配置

  <action name="toXXX" class="com.UserAction">

        <result >/XXX.jsp</result>
     </action>

此配置简单做一下页面跳转

其中UserAction继承ActionSuport但未重写execute方法,于是出现如下问题

在windows上可以正确跳转,但在Linux上却重定向到失败页面

 

2.Struts2 装饰器问题

  decorators.xml配置如出现冲突,如  

     <decorator name="main" page="main.jsp">

                   <pattern>/*/bu*.jsp</pattern>
            </decorator>

        <decorator name="biz" page="biz_main.jsp">

                  <pattern>/*/*.jsp</pattern>
           </decorator>

   这样配置将使上述bu_*.jsp也按照biz_main.jsp,解决办法经调试后改为

           <decorator name="main" page="main.jsp">

                   <pattern>/*/buB*.jsp</pattern>
            </decorator>

即添加大写字母,尚不知为何  

求各位路过大神指教一二  哈

 

 

 

 

转载于:https://www.cnblogs.com/java-zone/articles/2822969.html

你可能感兴趣的文章
可应用于实际的14个NLP突破性研究成果(三)
查看>>
[LeetCode] 41. First Missing Positive
查看>>
阿里如何将“高峰前扩容、高峰后缩容”的梦想照进现实?
查看>>
Node.js学习之路22——利用cheerio制作简单的网页爬虫
查看>>
聊一聊我对 React Context 的理解以及应用
查看>>
很多程序员都不会的问题,你知道多少?
查看>>
Scrapy-redis分布式组件
查看>>
package.json里的一些属性讲解
查看>>
leetcode 12 Integer to Roman
查看>>
Swoole+Lumen:同步编程风格调用MySQL异步查询
查看>>
探索 JUC 之美---Future 与 FutureTask
查看>>
《Java RESTful Web Service实战》第一章的实现补漏
查看>>
Linux 下统计文件夹大小及文件数量
查看>>
pgbackrest 简要使用说明
查看>>
Struts知识问答
查看>>
C# 中符号的作用[备忘]
查看>>
关于preempt_enable 和 preempt_disable 【转】
查看>>
SQLAlchemy 与 fask-SQLAlchemy 中的多表查询例子
查看>>
JS 获取图片原始尺寸-防止图片溢出
查看>>
Java反射
查看>>