最近在做项目开发过程中犯了一个很低级的错误,在这里列举出来,供大家参考借鉴:我希望通过Url请求一个Action,最终通过服务器的处理能得到一个Json串,所以我在Url中体现这一特点,将action的扩展名写为xxaction.json,在web.xml中将struts2过滤设置成了全部拦截,代码如下:
struts2 org.apache.struts2.dispatcher.FilterDispatcher struts2 /*
最后在采用这种方式访问action的时候,页面就抛出404错误,找不到服务器资源。朋友看了后,使用.action作为Action的扩展名,就正常访问了。
原因很简单:当struts2的"url-pattern"设置为"/*"时,此时Struts2的扩展名就默认为.action,所以使用.json这个扩展名就会访问不到。如果任然坚持使用.json这个扩展名,有三种发放来更改Struts2 Actin的扩展名。
方法一:
配置struts.xml 文件内容:
//注意这里 /test/helloWord.jsp
方法二:
在struts.properties 文件中加入一行配置信息:struts.action.extension=json
方法三:
在web.xml文件中给filter加上init-param属性,代码如下所示
struts2 org.apache.struts2.dispatcher.FilterDispatcher struts.action.extension json struts2 *.json
注意:配置多个拓展明请用英文逗号隔开
原文地址: