- 浏览: 147400 次
- 来自: ...
文章分类
最新评论
-
fisher:
真心感谢楼主! 解决了困扰我几天的大问题啊!
EntityManagerFactory -
悲剧了:
太棒了,我们项目正在用这个
struts2 convention-plugin -
nforce_com:
...
jpa继承关系详解 -
guanchuangsheng:
精辟~~
总算明白了·~
桥接模式和适配器模式的区别 -
lping2:
强,写得太全面了
EntityManagerFactory
最近开始关注struts2的新特性,从这个版本开始,Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置。
配置文件精简了,的确是简便了开发过程,但是,我们熟悉的配置突然disappear了,真是一下很不适应。跟着潮流走吧,看看该怎样来搞定convention-plugin。
使用Convention插件,你需要将其JAR文件放到你应用的WEB-INF/lib目录中,你也可以在你Maven项目的POM文件中添加下面包依赖
<dependency>
<!--CRLF-->
<groupId>org.apache.struts</groupId>
<!--CRLF-->
<artifactId>struts2-convention-plugin</artifactId>
<!--CRLF-->
<version>2.1.6</version>
<!--CRLF-->
</dependency>
<!--CRLF-->
零配置并不是没有配置,而是通过约定大于配置的方式,大量通过约定来调度页面的跳转而使得配置大大减少。所以,首先应该了解下convention-plugin的约定:
1. 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如:
Xml代码
<constant name="struts.convention.result.path" value="/WEB-INF/page" />
<!--CRLF-->
则将路径配置到了WEB-INF/page 下。
2. 默认包路径包含action,actions,struts,struts2的所有包都会被struts作为含有Action类的路径来搜索。你可以通过设置struts.convention.package.locators属性来修改这个配置。如:
<constant name="struts.convention.package.locators" value="web,action" />
<!--CRLF-->
则定义了在项目中,包路径包含web和action的将被视为Action存在的路径来进行搜索。
Com.ustb.web.*/com.ustb.action.*都将被视为含有Action的包路径而被搜索。
3. 接着,Convention从前一步找到的package以及其子package中寻找 com.opensymphony.xwork2.Action 的实现以及以Action结尾的类:
com.example.actions.MainAction
<!--CRLF-->
com.example.actions.products.Display (implements com.opensymphony.xwork2.Action)
<!--CRLF-->
com.example.struts.company.details.ShowCompanyDetailsAction
<!--CRLF-->
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 如
<constant name="struts.convention.action.name.separator" value="-" />
<!--CRLF-->
还是举个例子:
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注释
对如下例子:
Java代码
package com.example.web;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.Action;
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
<!--CRLF-->
public class HelloAction extends ActionSupport {
<!--CRLF-->
@Action("action1")
<!--CRLF-->
public String method1() {
<!--CRLF-->
return SUCCESS;
<!--CRLF-->
}
<!--CRLF-->
<!--CRLF-->
@Action("/user/action2")
<!--CRLF-->
public String method2() {
<!--CRLF-->
return SUCCESS;
<!--CRLF-->
}
<!--CRLF-->
}
<!--CRLF-->
方法名 | 默认调用路径 | 默认映射路径 |
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注释
Java代码
package com.example.web;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Action;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Actions;
<!--CRLF-->
<!--CRLF-->
public class HelloAction extends ActionSupport {
<!--CRLF-->
@Actions({
<!--CRLF-->
@Action("/different/url"),
<!--CRLF-->
@Action("/another/url")
<!--CRLF-->
})
<!--CRLF-->
public String method1() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
我们可以通过:/different/url!method1.action 或 /another/url!method1.action 来调用method1 方法。
对应的映射路径分别是/WEB-INF/content/different/url-error.jsp; /WEB-INF/content/another/url-error.jsp
可能误导了大家,一个方法被@Action注释后,只是多了一种调用方式,而不是说覆盖了原来的调用方式。比如对于如下例子:
Java代码
com.example.web;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
import org.apache.convention.annotation.Action;
<!--CRLF-->
import org.apache.convention.annotation.Actions;
<!--CRLF-->
<!--CRLF-->
public class HelloAction extends ActionSupport {
<!--CRLF-->
@Action("/another/url")
<!--CRLF-->
public String method1() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
我们调用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 注释
package com.example.web;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Action;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Actions;
<!--CRLF-->
@Namespace("/other")
<!--CRLF-->
public class HelloWorld extends ActionSupport {
<!--CRLF-->
<!--CRLF-->
public String method1() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
@Action("url")
<!--CRLF-->
public String method2() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
<!--CRLF-->
@Action("/different/url")
<!--CRLF-->
public String method3() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
}
<!--CRLF-->
通过 /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类上使用注解进行声明。
package com.example.actions;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Action;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Actions;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Result;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Results;
<!--CRLF-->
<!--CRLF-->
@Results({
<!--CRLF-->
@Result(name="failure", location="/WEB-INF/fail.jsp")
<!--CRLF-->
})
<!--CRLF-->
public class HelloWorld extends ActionSupport {
<!--CRLF-->
public String method1() {
<!--CRLF-->
return “failure”;
<!--CRLF-->
}
<!--CRLF-->
@Action("/different/url")
<!--CRLF-->
public String method2() {
<!--CRLF-->
return “failure”;
<!--CRLF-->
}
<!--CRLF-->
<!--CRLF-->
}
<!--CRLF-->
当我们访问 /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方法上进行声明。
Java代码
package com.example.actions;
<!--CRLF-->
<!--CRLF-->
import com.opensymphony.xwork2.ActionSupport;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Action;
<!--CRLF-->
import org.apache.struts2.convention.annotation.Actions;
<!--CRLF-->
import org.apache.convention.annotation.Result;
<!--CRLF-->
import org.apache.convention.annotation.Results;
<!--CRLF-->
<!--CRLF-->
public class HelloWorld extends ActionSupport {
<!--CRLF-->
@Action(value="/other/bar",results={@Result(name = "error", location = "www.baidu.com",type="redirect")})
<!--CRLF-->
public String method1() {
<!--CRLF-->
return “error”;
<!--CRLF-->
}
<!--CRLF-->
}
<!--CRLF-->
当我们调用 /hello -world !method1.action 时,返回 /WEB-INF/content/hello-error.jsp
当我们调用 /other/bar!method1.action 时,返回 www.baidu.com
发表评论
-
网络常用命令(转)
2011-05-31 13:30 1157对于网络管理员(一般用户可以稍微了解一些)来说,了解和掌握几个 ... -
struts1中的对象struts2如何得到
2011-05-29 14:02 1397在struts1.x Action类的execute方法中, ... -
java socket 详解
2011-05-26 15:37 2494一.什么是socket 所谓socket通常也称作" ... -
bat 命令速查
2011-05-07 13:44 1133@echo offdel CMD命令速查手册.htm > ... -
JDOM
2008-07-07 23:40 1000Java + XML = JDOM ! 这就是JDOM设计者 ... -
JDBC连接数据库经验技巧
2008-05-29 18:04 974JDBC连接数据库经验技巧集萃 Java数据库连接(JDBC) ... -
java 规范
2008-03-31 12:38 1707J2EE Java2平台企业版(Jav ... -
httpClient应用
2007-10-28 19:02 1593一般的情况下我们都是使用IE或者Navigator浏览器来访问 ... -
php的配置
2007-07-14 20:28 909这些天闲的无聊看了一下php,php比起jsp来说确实是很灵活 ... -
利用 JavaSocket 实现简单通信
2007-05-20 16:34 1506在java 中实现通信是利用java.net包 利用服务端Se ...
相关推荐
struts2-convention-plugin-2.3.24.1
struts2-convention-plugin-2.1.6.jar
struts2-convention-plugin-2.3.15.1.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-convention-plugin-2.3.24.jar
不论高低版本,要使用struts2-core这个jar包,当又需struts2-convention-plugin.jar时勿必要使两者版本一致哦,否则会有DefError、Unable to read class诸等错误
struts2-convention-plugin-2.3.4.1.jar
struts2-convention-plugin-2.3.15.3.jar struts2配置Action注解要用到的包,真正实现零配置
Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置,使用Convention插件,你需要此JAR文件
struts2-convention-plugin-2.1.8.1.jar
在Struts2框架中,Convention-Plugin是一项重要的功能,它允许开发者通过约定而非配置的方式快速搭建Web应用。 #### Convention-Plugin原理及实现 ##### 1. Convention-Plugin概述 在传统的Struts2项目中,开发...
Convention-plugin是Struts2提供的一种自动化配置机制,它允许开发者在不编写大量XML配置文件的情况下实现Action和结果页面的映射,极大地简化了开发流程。以下是关于Struts2 Convention-plugin的详细说明: 1. **...
从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...
在给定的文件"struts2-convention-plugin-2.3.32.jar"中,我们关注的是Struts2的Convention插件,版本号为2.3.32。这个插件是Struts2框架的一个重要组成部分,旨在提供更加灵活和自动化的配置方式。 Convention...