- 浏览: 136725 次
- 性别:
- 来自: 陕西榆林
文章分类
最新评论
-
威化考拉:
不错
log4j 日志配置 -
davidforit:
changli_annie 写道初始化的时候 那个callba ...
自动补全下拉框(可输入匹配的下拉框) -
changli_annie:
初始化的时候 那个callback需要怎么传值?
自动补全下拉框(可输入匹配的下拉框) -
changli_annie:
能否把JSP页面分享下》?
自动补全下拉框(可输入匹配的下拉框) -
changli_annie:
jsp页面如何调用的呢?$("#containerI ...
自动补全下拉框(可输入匹配的下拉框)
零配置并不是没有配置,而是通过约定大于配置的方式,大量通过约定来调度页面的跳转而使得配置大大减少。所以,首先应该了解下convention-plugin的约定:
1. 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如:
1. 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如:
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属性来修改这个配置。如:
< constant name ="struts.convention.package.locators" value ="web,action" />
则定义了在项目中,包路径包含web和action的将被视为Action存在的路径来进行搜索。
Com.ustb.web.*/com.ustb.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 ( 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 如:
Com.ustb.web.user.userAction的命名空间是:”/user”。Com.ustb.web.user.detail.UserAction的命名空间是:”/user/detail”
5. Convention通过如下规则确定URL的具体资源部分:去掉类名的Action部分。然后将将每个分部的首字母转为小写,用’-’分割,你可以设置struts.convention.action.name.separator 如:
< 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和结果模版的映射关系:
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 . package com.example.web; 2 . 3 . import com.opensymphony.xwork2.Action; 4 . import com.opensymphony.xwork2.ActionSupport; 5 . 6 . public class HelloAction extends ActionSupport { 7 . @Action( " action1 " ) 8 . public String method1() { 9 . return SUCCESS; 10 . } 11 . 12 . @Action( " /user/action2 " ) 13 . public String method2() { 14 . return SUCCESS; 15 . } 16 . }
方法名 | 默认调用路径 | 默认映射路径 |
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 . package com.example.web; 2 . 3 . import com.opensymphony.xwork2.ActionSupport; 4 . import org.apache.struts2.convention.annotation.Action; 5 . import org.apache.struts2.convention.annotation.Actions; 6 . 7 . public class HelloAction extends ActionSupport { 8 . @Actions({ 9 . @Action( " /different/url " ), 10 . @Action( " /another/url " ) 11 . }) 12 . public String method1() { 13 . return “error”; 14 . }
我们可以通过:/different/url!method1.action
或
/another/url!method1.action
来调用method1
方法。
对应的映射路径分别是/WEB-INF/content/different/url-error.jsp; /WEB-INF/content/another/url-error.jsp
可能误导了大家,一个方法被@Action注释后,只是多了一种调用方式,而不是说覆盖了原来的调用方式。比如对于如下例子:
对应的映射路径分别是/WEB-INF/content/different/url-error.jsp; /WEB-INF/content/another/url-error.jsp
可能误导了大家,一个方法被@Action注释后,只是多了一种调用方式,而不是说覆盖了原来的调用方式。比如对于如下例子:
1 . package com.example.web; 2 . 3 . import com.opensymphony.xwork2.ActionSupport; 4 . import org.apache.struts2.convention.annotation.Action; 5 . import org.apache.struts2.convention.annotation.Actions; 6 . 7 . public class HelloAction extends ActionSupport { 8 . @Action( " /another/url " ) 9 . public String method1() { 10 . return “error”; 11 . }
我们调用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方法进行调用,唯一的区别就是,两种调用的映射是不一样的,所以,想跳转到不同的界面,这是一个非常好的选择。
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 . package com.example.web; 2 . 3 . import com.opensymphony.xwork2.ActionSupport; 4 . import org.apache.struts2.convention.annotation.Action; 5 . import org.apache.struts2.convention.annotation.Actions; 6 . @Namespace( " /other " ) 7 . public class HelloWorld extends ActionSupport { 8 . 9 . public String method1() { 10 . return “error”; 11 . } 12 . @Action( " url " ) 13 . public String method2() { 14 . return “error”; 15 . } 16 . 17 . @Action( " /different/url " ) 18 . public String method3() { 19 . return “error”; 20 . } 21 . }
通过 /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类上使用注解进行声明。
通过 /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 . package com.example.actions; 2 . 3 . import com.opensymphony.xwork2.ActionSupport; 4 . import org.apache.struts2.convention.annotation.Action; 5 . import org.apache.struts2.convention.annotation.Actions; 6 . import org.apache.struts2.convention.annotation.Result; 7 . import org.apache.struts2.convention.annotation.Results; 8 . 9 . @Results({ 10 . @Result(name = " failure " , location = " /WEB-INF/fail.jsp " ) 11 . }) 12 . public class HelloWorld extends ActionSupport { 13 . public String method1() { 14 . return “failure”; 15 . } 16 . @Action( " /different/url " ) 17 . public String method2() { 18 . return “failure”; 19 . } 20 . 21 . }
当我们访问
/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方法上进行声明。
当我们访问 /hello -world !method2.action 时,返回 /WEB-INF/fail.jsp
当我们访问 /different/url!method2.action 时,返回 /WEB-INF/fail.jsp
2 本地的(local)。
本地results只能在action方法上进行声明。
1 . package com.example.actions; 2 . 3 . import com.opensymphony.xwork2.ActionSupport; 4 . import org.apache.struts2.convention.annotation.Action; 5 . import org.apache.struts2.convention.annotation.Actions; 6 . import org.apache.struts2.convention.annotation.Result; 7 . import org.apache.struts2.convention.annotation.Results; 8 . 9 . public class HelloWorld extends ActionSupport { 10 . @Action(value = " /other/bar " ,results = {@Result(name = " error " , location = " www.baidu.com " ,type = " redirect " )}) 11 . public String method1() { 12 . return “error”; 13 . } 14 . }
当我们调用
/hello
-world
!method1.action
时,返回
/WEB-INF/content/hello-error.jsp
当我们调用 /other/bar!method1.action 时,返回 www.baidu.com
当我们调用 /other/bar!method1.action 时,返回 www.baidu.com
发表评论
-
mybatis sql String>Double, 类型参数被强转为数值类型
2015-09-12 15:51 11528最近项目中使用 mybatis 做为持久化层框架, 本 ... -
log4j 日志配置
2015-05-13 17:24 2267log4j 大概的配置方式可分为 2 种: ... -
spring mvc 乱码问题
2015-04-29 12:30 1900tomacat对GET和POST请求处理方式是不同的 P ... -
spring3.0+struts2.0+mybatis3.2+jta+xapool配置文件示例
2014-03-18 12:26 1554spring 中 mybatis的配置 ... -
springSide的hibernate封装
2014-01-15 16:37 979SpringSide 的 hibernate的封装 ... -
Spring 定时器Quartz的配置
2012-12-04 15:20 878Quartz是一个强大的企业 ... -
java - springside3 - PropertyFilter 规则
2012-04-26 13:38 1753SpringSide3 中PropertyFilter的格式 ... -
servlet 生命周期
2012-04-16 20:27 978servlet的生命周期起始于一个Servlet类被加载到s ... -
struts2 工作原理
2012-04-16 20:20 898上图来源于Struts2官方站点,是Str ... -
struts1 工作原理
2012-04-16 20:09 1072学习了,转自:http://zhoujia.iteye. ... -
SSH整合
2012-03-27 09:43 735SSH框架整合配置教程。 -
java - hibernate - 脏检查,缓存清理
2012-03-13 15:07 1039脏检查 Session到底是如 ... -
hibernate持久化层状态及其特征
2012-03-13 14:17 1219对于需要被持久化的Java对象,在它的生命周期中,可处 ...
相关推荐
struts2-convention-plugin-2.3.24.1
struts2-convention-plugin-2.3.15.1.jar
struts2-convention-plugin-2.1.6.jar
struts2-convention-plugin-2.3.1.jar,使用注解的方式代替xml配置action,必须要引用这个包。
struts2-convention-plugin-2.1.8.jar
struts2-convention-plugin-2.3.32
struts2-convention-plugin-2.3.1.2.jar
不论高低版本,要使用struts2-core这个jar包,当又需struts2-convention-plugin.jar时勿必要使两者版本一致哦,否则会有DefError、Unable to read class诸等错误
struts2-convention-plugin-2.3.24.jar
struts2-convention-plugin-2.3.15.3.jar struts2配置Action注解要用到的包,真正实现零配置
struts2-convention-plugin-2.3.4.1.jar
Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置,使用Convention插件,你需要此JAR文件
struts2-convention-plugin-2.1.8.1.jar
在Struts2的某个版本之后,引入了一项名为`convention-plugin`的新特性,旨在简化配置过程,实现所谓的“零配置”开发。这个插件允许开发者通过约定而非显式配置来设置Action类、结果页面等,从而减少了XML配置文件...
综上所述,"struts2-convention-plugin-2.3.32.jar"是Struts2框架中一个强大且实用的插件,它通过约定优于配置的方式提高了开发效率。然而,理解和掌握其工作原理以及如何有效地结合使用注解是成功运用此插件的关键...
一:升级高版本的struts2.5.22 无法访问Action解决办法 1.最主要原始struts版本与freemarker-2.3.22版本不一致...2.具体原因就研究struts2-core-2.3.32.jar 与 freemarker-2.3.22.jar 关系依赖 更新如下8个jar即可。
2.5.10.1.jar,struts2-config-browser-plugin-2.5.10.1.jar,struts2-convention-plugin-2.5.10.1.jar,struts2-dwr-plugin-2.5.10.1.jar,struts2-embeddedjsp-plugin-2.5.10.1.jar,struts2-gxp-plugin-2.5.10.1....