问题描述
- struts2使用convention插件搜索映射页面路径问题
-
项目中使用了convention插件,网上百度了以下 发现映射的html包路径是这样配置的
constant name="struts.convention.result.path
然后映射的html文件名应该是这样格式的,比如请求的是HelloWorldAction!hello,那么返回的页面应该是hello_world_hello方法的返回值.html,但是看到项目中却直接映射到hello方法返回值.html里,不知道为什么?很是奇怪。。。。。
项目中Aciton名:TerminalConsumeTrendAction
项目中的Action方法
public String totalByOrgAndBiz() {
return "terminalConsumeTrend_totalByOrgAndBiz";
}
页面名字:terminalConsumeTrend_totalByOrgAndBiz.htm
这样可以映射?个人觉得应该是terminal_consume_trend_terminalConsumeTrend_totalByOrgAndBiz这样才对。。。。。
时间: 2024-11-30 04:42:04