`
mixer_a
  • 浏览: 363435 次
社区版块
存档分类
最新评论

Struts2学习笔记 -- 零配置之convention-plugin实现

阅读更多

 

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

  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这个属性的值来改变到其他路径。如:

  1. <constantname="struts.convention.result.path"value="/WEB-INF/page"/>


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

  1. <constantname="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结尾的类:

  1. com.example.actions.MainAction
  2. com.example.actions.products.Display(implementscom.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 如

  1. <constantname="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和结果模版的映射关系:

URL Result
File that could match Result Type
/hello success /WEB-INF/content/hello.jsp Dispatcher
/hello success /WEB-INF/content/hello-success.htm Dispatcher
/hello success /WEB-INF/content/hello.ftl FreeMarker
/hello-world input /WEB-INF/content/hello-world-input.vm Velocity
/test1/test2/hello error /WEB-INF/content/test/test2/hello-error.html Dispatcher

 

 

 

 

 

 

 

 

 

 

 

以上的内容来自struts2的文档http://struts.apache.org/2.1.6/docs/convention-plugin.html

 

当然,简单的通过默认的方式来进行配置不能完全满足实际项目的需要。所幸,convention的零配置是非常灵活的。
通过@Action注释
对如下例子:

  1. packagecom.example.web;
  2. importcom.opensymphony.xwork2.Action;
  3. importcom.opensymphony.xwork2.ActionSupport;
  4. publicclassHelloActionextendsActionSupport{
  5. @Action("action1")
  6. publicStringmethod1(){
  7. returnSUCCESS;
  8. }
  9. @Action("/user/action2")
  10. publicStringmethod2(){
  11. returnSUCCESS;
  12. }
  13. }

方法名 默认调用路径 默认映射路径
method1 /hello!method1.action . /WEB-INF/content/hello.jsp
method2 /hello!method2.action. /WEB-INF/content/hello.jsp

通过@Action注释后

方法名 @Action注释后调用路径 @Action注释后映射路径
method1 /action1!method1.action. /WEB-INF/content/action1.jsp
method1 /user/action2!method2.action /WEB-INF/content/user/action2.jsp


通过@Actions注释

  1. packagecom.example.web;
  2. importcom.opensymphony.xwork2.ActionSupport;
  3. importorg.apache.struts2.convention.annotation.Action;
  4. importorg.apache.struts2.convention.annotation.Actions;
  5. publicclassHelloActionextendsActionSupport{
  6. @Actions({
  7. @Action("/different/url"),
  8. @Action("/another/url")
  9. })
  10. publicStringmethod1(){
  11. return“error”;
  12. }


我们可以通过:/different/url!method1.action/another/url!method1.action来调用method1方法。
对应的映射路径分别是/WEB-INF/content/different/url-error.jsp; /WEB-INF/content/another/url-error.jsp

可能误导了大家,一个方法被@Action注释后,只是多了一种调用方式,而不是说覆盖了原来的调用方式。比如对于如下例子:

  1. packagecom.example.web;
  2. importcom.opensymphony.xwork2.ActionSupport;
  3. importorg.apache.struts2.convention.annotation.Action;
  4. importorg.apache.struts2.convention.annotation.Actions;
  5. publicclassHelloActionextendsActionSupport{
  6. @Action("/another/url")
  7. publicStringmethod1(){
  8. return“error”;
  9. }


我们调用method1方法可以通过两种方式:
1/hello!method1.action映射url:/WEB-INF/content/hello-error.jsp
2
/another/url!method1.action映射url:/WEB-INF/content/another/url-error.jsp
可见,两种方式均可对method1方法进行调用,唯一的区别就是,两种调用的映射是不一样的,所以,想跳转到不同的界面,这是一个非常好的选择。


通过@Namespace 注释

  1. packagecom.example.web;
  2. importcom.opensymphony.xwork2.ActionSupport;
  3. importorg.apache.struts2.convention.annotation.Action;
  4. importorg.apache.struts2.convention.annotation.Actions;
  5. @Namespace("/other")
  6. publicclassHelloWorldextendsActionSupport{
  7. publicStringmethod1(){
  8. return“error”;
  9. }
  10. @Action("url")
  11. publicStringmethod2(){
  12. return“error”;
  13. }
  14. @Action("/different/url")
  15. publicStringmethod3(){
  16. return“error”;
  17. }
  18. }



通过/other/hello-world!method1.action访问method1方法。
通过
/other/url!method2.action访问method2方法
通过
/different /url!method3.action访问method3方法
与@Action 注释不同的是,该注释覆盖了默认的namespace(这里是’/’),此时再用hello!method1.action已经不能访问method1了.
@Results和@Result
1 全局的(global)。
全局results可以被action类中所有的action分享,这种results在action类上使用注解进行声明。

  1. packagecom.example.actions;
  2. importcom.opensymphony.xwork2.ActionSupport;
  3. importorg.apache.struts2.convention.annotation.Action;
  4. importorg.apache.struts2.convention.annotation.Actions;
  5. importorg.apache.struts2.convention.annotation.Result;
  6. importorg.apache.struts2.convention.annotation.Results;
  7. @Results({
  8. @Result(name="failure",location="/WEB-INF/fail.jsp")
  9. })
  10. publicclassHelloWorldextendsActionSupport{
  11. publicStringmethod1(){
  12. return“failure”;
  13. }
  14. @Action("/different/url")
  15. publicStringmethod2(){
  16. return“failure”;
  17. }
  18. }


当我们访问/hello-world!method1.action时,返回/WEB-INF/fail.jsp
当我们访问/hello
-world
!method2.action时,返回/WEB-INF/fail.jsp
当我们访问/different/url!method2.action时,返回/WEB-INF/fail.jsp


2 本地的(local)。
本地results只能在action方法上进行声明。

  1. packagecom.example.actions;
  2. importcom.opensymphony.xwork2.ActionSupport;
  3. importorg.apache.struts2.convention.annotation.Action;
  4. importorg.apache.struts2.convention.annotation.Actions;
  5. importorg.apache.struts2.convention.annotation.Result;
  6. importorg.apache.struts2.convention.annotation.Results;
  7. publicclassHelloWorldextendsActionSupport{
  8. @Action(value="/other/bar",results={@Result(name="error",location="www.baidu.com",type="redirect")})
  9. publicStringmethod1(){
  10. return“error”;
  11. }
  12. }

3
2
分享到:
评论

相关推荐

    张龙圣思园struts2学习笔记word

    张龙圣思园的Struts2学习笔记,无疑为Java开发者提供了一份宝贵的参考资料,它可能涵盖了Struts2的基础概念、核心组件、配置方式以及实战技巧。 首先,让我们深入了解Struts2的核心特性。Struts2是MVC(Model-View-...

    struts2学习笔记.rar

    Struts2还提供了强大的插件系统,如Tiles插件用于页面布局,Struts2-dojo-plugin支持AJAX功能,Struts2-convention-plugin简化了配置,实现了基于约定优于配置的开发方式。此外,Struts2还可以与其他框架集成,如...

    struts2学习笔记十九(第19讲.Struts2深入探索 续)

    7. **Struts2插件**:Struts2提供了一系列的插件,如Struts2-dojo-plugin用于集成Dojo库,Struts2-convention-plugin用于自动配置Action,这些插件极大地扩展了框架的功能。 8. **源码分析**:深入理解Struts2的...

    struts2学习笔记

    要搭建Struts2环境,首先需要在项目中引入Struts2的核心库,通常包括struts2-core、struts2-convention-plugin等。然后配置web.xml文件,添加Struts2的前端控制器Filter,如`&lt;filter-class&gt;org.apache.struts2....

    struts2的学习笔记+测试源代码

    总结,Struts2的学习笔记结合测试源代码,可以帮助开发者掌握Struts2的核心概念,包括Action、拦截器、值栈和MVC设计模式的应用,以及配置、测试和安全方面的知识。通过实际编码和调试,可以加深对Struts2的理解,...

    struts2 学习资料

    这个"struts2 学习资料"包含了关于Struts2的基础到进阶的学习资源,可能是教程文档、示例代码或者是相关的学习笔记。 Struts2框架的核心特性包括: 1. **Action类**:在Struts2中,Action类是业务逻辑的载体,它...

    Struts2_学习笔记.zip

    这个"Struts2_学习笔记"包含了关于Struts2框架的深入学习资料,是理解并掌握Struts2核心概念和技术的关键。 Struts2的核心设计理念是模型-视图-控制器(MVC)架构模式,它简化了Java Web开发,将业务逻辑、数据展示...

    学习笔记—Struts2

    1. **插件支持**:Struts2拥有丰富的插件库,如Struts2-dojo-plugin用于增强Ajax功能,Struts2-convention-plugin简化Action的配置。 2. **测试友好**:Struts2支持单元测试和集成测试,可以方便地对Action进行独立...

    struts2经典教程

    6. **插件体系**:Struts2拥有丰富的插件库,如Struts2-dojo-plugin提供AJAX支持,Struts2-convention-plugin实现零配置开发。 7. **异常处理**:Struts2提供了全局异常处理机制,通过配置文件或注解定义错误页面,...

    Struts2随手笔记

    Convention插件使得Struts2可以实现“零配置”开发,即通过类名和方法名自动映射Action和结果。例如,类名为`UserAction`的方法`save()`可以直接映射到URL `/user/save.action`。 5. **Struts2注解**: - **...

    struts2笔记

    Struts2的工具部分包含了一系列辅助库,如Struts2-dojo-plugin提供Dojo JavaScript库的支持,Struts2-convention-plugin则简化了Action的配置,通过类名和方法名自动映射URL。 在源码层面,Struts2的核心机制包括...

    Struts2 笔记

    Struts2还提供了大量的插件,如Struts2-convention-plugin,可以实现基于约定优于配置的开发模式,提高开发效率。 综上所述,Struts2笔记可能会涵盖这些主题,包括但不限于框架的安装与配置、Action和Result的使用...

    Struts2五种数据封装Demo

    1. **默认封装**:Struts2默认使用`@.struts2-convention-plugin`插件,根据Action方法的参数名自动匹配请求参数。 2. **使用ActionContext**:通过`ActionContext`对象获取请求参数,然后手动设置到Action类的属性...

    于洋struts2

    9. **插件体系**:Struts2拥有丰富的插件支持,如struts2-dojo-plugin用于增强AJAX功能,struts2-convention-plugin简化Action的配置等。 10. **测试**:Struts2支持单元测试和集成测试,可以使用MockMVC或...

    ssh整合jar包

    2. Struts2框架的库:如struts2-core、struts2-convention、struts2-json-plugin等,用于处理请求、展现视图和实现MVC模式。 3. Hibernate框架的库:如hibernate-core、hibernate-entitymanager、hibernate-...

Global site tag (gtag.js) - Google Analytics