(转)struts2的零配置

转自 http://javeye.iteye.com/blog/358744

最近开始关注struts2的新特性,从这个版本开始,Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置。
配置文件精简了,的确是简便了开发过程,但是,我们熟悉的配置突然disappear了,真是一下很不适应。跟着潮流走吧,看看该怎样来搞定convention-plugin。
使用Convention插件,你需要将其JAR文件放到你应用的WEB-INF/lib目录中,你也可以在你Maven项目的POM文件中添加下面包依赖

Xml代码   收藏代码
  1. <dependency>  
  2.   <groupId>org.apache.struts</groupId>  
  3.   <artifactId>struts2-convention-plugin</artifactId>  
  4.   <version>2.1.6</version>  
  5. </dependency>  



零配置并不是没有配置,而是通过约定大于配置的方式,大量通过约定来调度页面的跳转而使得配置大大减少。所以,首先应该了解下convention-plugin的约定:
1. 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如:

Xml代码   收藏代码
  1. <constant name="struts.convention.result.path" value="/WEB-INF/page" />  


则将路径配置到了WEB-INF/page 下。
2. 默认包路径包含action,actions,struts,struts2的所有包都会被struts作为含有Action类的路径来搜索。你可以通过设置struts.convention.package.locators属性来修改这个配置。如:

Xml代码   收藏代码
  1. <constant name="struts.convention.package.locators" value="web,action" />  


则定义了在项目中,包路径包含web和action的将被视为Action存在的路径来进行搜索。
Com.ustb.web.*/com.ustb.action.*都将被视为含有Action的包路径而被搜索。
3. 接着,Convention从前一步找到的package以及其子package中寻找 com.opensymphony.xwork2.Action 的实现以及以Action结尾的类:

Java代码   收藏代码
  1. com.example.actions.MainAction  
  2. com.example.actions.products.Display (implements com.opensymphony.xwork2.Action)  
  3. com.example.struts.company.details.ShowCompanyDetailsAction  



4. 命名空间。从定义的.package.locators标示开始到包结束的部分,就是命名空间。举个例子:
Com.ustb.web.user.userAction的命名空间是:”/user”。Com.ustb.web.user.detail.UserAction的命名空间是:”/user/detail”
5. Convention通过如下规则确定URL的具体资源部分:去掉类名的Action部分。然后将将每个分部的首字母转为小写,用’-’分割,你可以设置struts.convention.action.name.separator 如

Xml代码   收藏代码
  1. <constant name="struts.convention.action.name.separator" value="-" />  


还是举个例子:
UserAction->user  UserDetailAction ->user-detail。结合上面的。对于com.ustb.web.user.detail.UserDetailAction,映射的url就是/WEB-INF/content/user/detail/user-detail.jsp
6. struts支持.jsp .html .htm .vm格式的文件。
下面是actiong和结果模版的映射关系:

URLResult 
File that could matchResult Type
/hellosuccess/WEB-INF/content/hello.jspDispatcher
/hellosuccess/WEB-INF/content/hello-success.htmDispatcher
/hellosuccess/WEB-INF/content/hello.ftlFreeMarker
/hello-worldinput/WEB-INF/content/hello-world-input.vmVelocity
/test1/test2/helloerror/WEB-INF/content/test/test2/hello-error.htmlDispatcher

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值