Struts2零配置

  • 介绍
Struts2的零配置功能的实现基本都在这个模块中struts2-convention-plugin。所以,如果想要弄明白这个零配置的功能是怎么实现的话,您可以花点时间来研究一下这个jar文件中的类。 这样的话Struts2会把包action、actions、struts、struts2下的所有以action结尾或者继承了SupportAction的类作为action。 在struts.xml文件中可以配置包含action的包路径,配置如下: <constant name="struts.convention.package.locators"value="org.suren.action" /> 另外,默认的访问路径后缀是action,也可以修改常亮struts.convention.action.suffix的值来改变后缀。
  • action的访问路径
如果类名为TestAction,那么Action对应的name就是test 如果类名为TestTwoAction的话,对应Action的name属性就是test-two 注意,上面讲的都是默认执行execute方法,要想执行例如hello这个方法的话,应该访问的路劲为test!hello.action
  • 参考
http://www.cnblogs.com/binger/archive/2012/09/26/2704597.html

你可能感兴趣的:(零配置)