1.访问servlet API 2.Action搜索顺序 3.动态方法调用 4.指定多个配置文件 5.默认Action 6.struts2后缀 7.接收参数 8.处理结果类型
2016-12-21
使用Struts2.5版本遇到的坑:
(1)在web.xml中加载struts2过滤器时,应该是:
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
(2)Tomcat无法正常启动,抛出异常:
是因为缺少log4j-api-2.7.jar包,将包导入项目中就可以了。
(3)在使用通配符时,访问时抛出404错误:
2.5添加了验证是否允许访问该方法,所以要在Action标签里面加上:
<allowed-methods>方法名1,方法名2…</allowed-methods>
(1)在web.xml中加载struts2过滤器时,应该是:
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
(2)Tomcat无法正常启动,抛出异常:
是因为缺少log4j-api-2.7.jar包,将包导入项目中就可以了。
(3)在使用通配符时,访问时抛出404错误:
2.5添加了验证是否允许访问该方法,所以要在Action标签里面加上:
<allowed-methods>方法名1,方法名2…</allowed-methods>
2016-12-21
高版本struts2中 过滤器的路径没有去掉“ng.”
路径应为“org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter”
路径应为“org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter”
2016-12-09