`

struts2 convention插件的使用(一)

阅读更多

 

 

 

struts2 convention插件的相关文章在网络上还很少,今天研究了一下

官方文档 http://cwiki.apache.org/WW/convention-plugin.html

 

 

 

附件内源码环境(下载请到页尾)

Dynamic Web Project

eclipse3.3

jdk1.6

tomcat6

 

必要jar列表

 

commons-fileupload-1.2.1.jar

commons-logging-1.0.4.jar

freemarker-2.3.13.jar

ognl-2.6.11.jar

struts2-convention-plugin-2.1.6.jar

struts2-core-2.1.6.jar

xwork-2.1.2.jar

  •  
    • com.sunflower.actions.NavigatorAction
    • com.sunflower.actions.child.ChildAction
    • error.jsp
    • index.jsp
    • next.jsp
    • child/next.jsp
    • 主题:确认action内默认执行方法是execute还是index
      请求url:navigator.action  
      类型:dispatcher 
      方法:execute或index 
      执行默认方法
    • 主题:测试如何跳转到站外
      请求url:navigator!redirect.action   
      类型:redirect(旧版本使用ServletRedirectResult.class) 
      方法:redirect 
      跳转到站外
    • 主题:测试redirectAction、basePackage内子包action的映射、以及参数传递
      请求url:navigator!redirectAction.action   
      类型:redirectAction (旧版本使用ServeltActionRedirectResult.class) 
      方法:redirectAction 
      location:child/child(basePackage=com.sunflower.actions,this package=com.sunflower.actions.child) 
      注意
      1:ChildAction内的execute方法返回指向location="next.jsp",查看结果页面next.jsp是根目录资源还是/child/next.jsp资源 
      2: redirectAction方法向请求作用域设置了msg信息,查看是否显示了msg 
      跳转到站内action
    • 主题:错误跳转
      请求url:navigator!error.action   
      生成错误
    • 主题:@Action的使用已经Result的location绝对与相对的区别
      使用注解@Action(value="/test/childTest") 
      请求url:/test/childTest.action   
      注意:类仍然是NavigatorAction 
      next.jsp为绝对路径
    • 主题:@Actions的使用
      注解@Actions({ @Action(value="/test/action1"), @Action(value="/test/action2") })
      请求
      url:/test/action1.action 
      url:/test/action2.action 
      注意:类仍然是NavigatorAction 
      action1 action2
  •  

    Web.xml关键部分

     

     

<!-- ============================ 使用struts2处理页面请求 ============================ -->
	<filter>
		<filter-name>struts2</filter-name>
		<filter-class>
			org.apache.struts2.dispatcher.FilterDispatcher
		</filter-class>
	</filter>
	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>*.action</url-pattern>
	</filter-mapping>

 

 

struts2.xml配置如下

 

 

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
	<!--开发模式设置开始//-->
	<!--++++++++++++++++++++++++++++++++++++++++++++++++开发状态 -->
	<constant name="struts.devMode" value="true" />
	<!-- 国际化资源重新加载  -->
	<constant name="struts.i18n.reload" value="true" />
	<!-- 配置文件重新加载 -->
	<constant name="struts.configuration.xml.reload" value="true" />
	<!-- convention类从新加载 -->
	<constant name="struts.convention.classes.reload" value="true" />
	<!--++++++++++++++++++++++++++++++++++++++++++++++++开发模式结束 -->
	<!-- 主题 -->
	<constant name="struts.ui.theme" value="simple" />
	<!-- 地区 -->
	<constant name="struts.locale" value="zh_CN" />
	<!-- 国际化编码 -->
	<constant name="struts.i18n.encoding" value="UTF-8" />
	<!--  扩展-->
	<constant name="struts.action.extension" value="action,do,jsp" />
	<!-- 启用动态方法调用 -->
	<constant name="struts.enable.DynamicMethodInvocation" value="true" />
	<!-- 设置Struts 2是否允许在Action名中使用斜线 -->
	<constant name="struts.enable.SlashesInActionNames" value="false" />
	<!-- 结果资源所在路径 -->
	<constant name="struts.convention.result.path" value="/"/> 
	<!-- action后缀 -->
	<constant name="struts.convention.action.suffix" value="Action"/> 
	<!-- 名称首字母小写 -->
    <constant name="struts.convention.action.name.lowercase" value="true"/> 
    <!-- 分隔符 一个action名字的获取。比如为HelloWorldAction。按照配置,actionName为hello_world。 -->
    <constant name="struts.convention.action.name.separator" value="_"/> 
    <!-- 禁用扫描 -->
    <constant name="struts.convention.action.disableScanning" value="false"/> 
    <!-- 默认包 -->
    <constant name="struts.convention.default.parent.package" value="default"/> 
    <!--确定搜索包的路径。只要是结尾为action的包都要搜索。basePackage按照默认不用配置,如果配置,只会找以此配置开头的包。locators及locators.basePackage都是一组以逗号分割的字符串。 -->
    <constant name="struts.convention.package.locators" value="actions"/> 
    <!-- 禁用包搜索 -->
    <constant name="struts.convention.package.locators.disable" value="false"/> 
    <!-- 基于什么包 -->
    <constant name="struts.convention.package.locators.basePackage" value="com.sunflower.actions"/>
    <!--  排除的包 -->
    <constant name="struts.convention.exclude.packages" value="org.apache.struts.*,org.apache.struts2.*,org.springframework.web.struts.*,org.springframework.web.struts2.*,org.hibernate.*"/>
    <!-- 包含的包 -->
    <!-- 包括的jar,一般用于大型项目,其action一般打包成jar -->
    <constant name="struts.convention.action.includeJars" value="" />
    <!-- 结果类型 -->
    <constant name="struts.convention.relative.result.types" value="dispatcher,freemarker"/> 
    <!-- 
     如果此值设为true,如果一个action的命名空间为/login,名称为HelloWorldAction。result返回值是success,默认会找到/WEB-INF/pages/login/hello_world.jsp(如果有hello_world_success.jsp就找这个文件,连接符“_”是在<constant name="struts.convention.action.name.separator" value="_"/>中配置的)。如果有一个action的result返回值是“error”,就会找/WEB-INF/pages /login/hello_world_error.jsp。 

      如果此值设为false,如果一个action的命名空间为/login,名称为HelloWorldAction。result返回值是success,默认会找到/WEB- INF/pages/login/hello_world/index.jsp(如果有success.jsp就找这个文件)。如果有一个action的result返回值是“error”,就会找/WEB-INF/pages /login/hello_world/error.jsp。 
     -->
    <constant name="struts.convention.result.flatLayout" value="true"/>
    <constant name="struts.convention.action.mapAllMatches" value="false"/> 
    <!-- 检查是否实现action -->
    <constant name="struts.convention.action.checkImplementsAction" value="true"/>
    <constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/>
	<constant name="struts.convention.redirect.to.slash" value="true"/>
	<package name="default" extends="struts-default">
		<interceptors>
			<interceptor-stack name="defaultStack">
				<interceptor-ref name="exception" />
				<interceptor-ref name="servletConfig" />
				<interceptor-ref name="actionMappingParams" />
				<interceptor-ref name="staticParams" />
				<interceptor-ref name="params" />
			</interceptor-stack>
		</interceptors>
	</package>
</struts>

 

 

NavigatorAction源码

 

package com.sunflower.actions;

import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Actions;
import org.apache.struts2.convention.annotation.Result;
import org.apache.struts2.convention.annotation.Results;

import com.opensymphony.xwork2.ActionContext;

@Results( {
		@Result(name = "next", location = "/next.jsp", type = "dispatcher"),
		@Result(name = "error", location = "error.jsp", type = "dispatcher"),
		@Result(name = "redirectAction", location = "./child/child", type = "redirectAction"),
		@Result(name = "redirect", location = "http://sunflowers.iteye.com", type = "redirect") })
public class NavigatorAction {
	private String actionName;

	public void setActionName(String actionName) {
		this.actionName = actionName;
	}

	public String index() {
		outputMsg("method:index");
		return "next";
	}

	public String execute() {
		outputMsg("method:execute,no index method");
		return "next";
	}

	public String error() {
		try {
			throw new Exception();
		} catch (Exception e) {
			outputMsg(e);
			return "error";
		}
	}

	public String redirect() {
		System.out.println("重定向:rediret");
		return "redirect";
	}

	public String redirectAction() {
		outputMsg("navigatorAction 跳转而来,原地址是navigator!redirectAction.action,请查看地址栏");
		return "redirectAction";
	}

	@Action(value = "/test/childTest")
	public String action() {
		outputMsg("@action ---method:action");
		return "next";
	}

	@Actions( { @Action(value = "/test/action1"),
			@Action(value = "/test/action2") })
	public String actions() {
		outputMsg("@actions ---method:actions,action=" + actionName);
		return "next";
	}
	private void outputMsg(Object msg) {
		System.out.println(msg);
		ActionContext.getContext().put("msg", msg);
	}
}

 

 

 ChildAction源码

 

package com.sunflower.actions.child;

import org.apache.struts2.convention.annotation.Result;
import org.apache.struts2.convention.annotation.Results;

@Results( {
		@Result(name = "next", location = "next.jsp", type = "dispatcher")})
public class ChildAction {
	public String execute() {
		System.out.println("childAction 默认方法执行");
		return "next";
	}
}

 

     index.jsp源码
    <%@ page language="java" contentType="text/html; charset=UTF-8"
    	pageEncoding="UTF-8"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>struts2 convention测试</title>
    <style>
    * {
    	line-height: 2em;
    }
    
    a:visited,a:hover,a:active,a:link {
    	color: #00f;
    }
    </style>
    </head>
    <body>
    后台Action&nbsp;
    <ul class="horizontal">
    	<li>com.sunflower.actions.NavigatorAction</li>
    	<li>com.sunflower.actions.child.ChildAction</li>
    </ul>
    页面资源&nbsp;
    <ul class="horizontal">
    	<li>error.jsp</li>
    	<li>index.jsp</li>
    	<li>next.jsp</li>
    	<li>child/next.jsp</li>
    </ul>
    <ul>
    	<li>主题:确认action内默认执行方法是execute还是index<br />
    	请求url:navigator.action&nbsp;&nbsp;<br />
    	类型:dispatcher <br />
    	方法:execute或index <br />
    	<a href="./navigator.action">执行默认方法</a></li>
    	<li>主题:测试如何跳转到站外<br />
    	请求url:navigator!redirect.action&nbsp;&nbsp; <br />
    	类型:redirect(旧版本使用ServletRedirectResult.class) <br />
    	方法:redirect <br />
    	<a href="./navigator!redirect.action">跳转到站外</a></li>
    	<li>主题:测试redirectAction、basePackage内子包action的映射、以及参数传递<br />
    	请求url:navigator!redirectAction.action&nbsp;&nbsp; <br />
    	类型:redirectAction (旧版本使用ServeltActionRedirectResult.class) <br />
    	方法:redirectAction <br />
    	location:child/child(basePackage=com.sunflower.actions,this&nbsp;package=com.sunflower.actions.child)
    	<br />
    	<font color="red">注意</font><br />
    	1:ChildAction内的execute方法返回指向location="next.jsp",查看结果页面next.jsp是根目录资源还是/child/next.jsp资源
    	<br />
    	2: redirectAction方法向请求作用域设置了msg信息,查看是否显示了msg <br />
    	<a href="./navigator!redirectAction.action">跳转到站内action</a></li>
    	<li>主题:错误跳转<br />
    	请求url:navigator!error.action&nbsp;&nbsp; <br />
    	<a href="./navigator!error.action">生成错误</a></li>
    	<li>主题:@Action的使用已经Result的location绝对与相对的区别<br />
    	使用注解@Action(value="/test/childTest") <br />
    	请求url:/test/childTest.action&nbsp;&nbsp; <br />
    	<font color="red">注意</font>:类仍然是NavigatorAction <br />
    	<a href="./test/childTest.action">next.jsp为绝对路径</a></li>
    	<li>主题:@Actions的使用<br />
    	注解@Actions({ @Action(value="/test/actions1"),
    	@Action(value="/test/actions2") })<br />
    	请求<br />
    	url:/test/action1.action <br />
    	url:/test/action2.action <br />
    	<font color="red">注意</font>:类仍然是NavigatorAction <br />
    	<a href="./test/action1.action?actionName=action1">action1</a>&nbsp;<a
    		href="./test/action2.action?actionName=action2">action2</a></li>
    </ul>
    </body>
    </html>

     

     

     next.jsp源码

     

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title><style>
*{
line-height:3em;
}
</style>
</head>
<body>
<h1>struts2 &nbsp;&nbsp;&nbsp;convention插件使用测试</h1>
测试信息
<br />
${msg}
<br />
<a href="#" onclick="window.history.go(-1);return false;">返回</a>
</body>
</html>

 

 

 child/next.jsp源码

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
	pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title><style>
*{
line-height:3em;
}
</style>
</head>
<body>
child/next.jsp:{msg}
</body>
</html>

 

 

 

 

 

 

     

 

 

 

 

 

 

 

 

15
3
分享到:
评论
5 楼 Pauvrepetiti 2012-06-13  
写的很好
4 楼 sunxden 2011-12-25  
呵呵,那个Pages不一致不是要点,请不要把这个当成问题所在了!
3 楼 sunxden 2011-12-25  
你好,如果 结果资源所在路径设置为<constant name="struts.convention.result.path" value="/WEB-INF/pages"/>,那么在NavigatorAction中@Results({@Result(name = "redirectAction", location = "./child/child", type = "redirectAction")})执行站内跳转到ChildAction后,再执行默认的execute方法时,根据其注解@Results( {@Result(name = "next", location = "next.jsp", type = "dispatcher")}),我个人认为此处的next.jsp页面的路径应该是/WEB-INF/pages/child/next.jsp(已经新建该路径及其next.jsp页面),但是运行这个Project后,它却提示404,找不到该请求页面

type Status report

message /struts/WEB-INF/page/child/next.jsp

description The requested resource (/struts/WEB-INF/page/child/next.jsp) is not available.
这是怎么回事?希望你能给个解答!

2 楼 bolo 2010-04-02  
补充一下,默认根包就是像你这样的 package com.sunflower.actions;
1 楼 bolo 2010-04-02  
我有问题想请教下,如果我在一个Action中,想从当前执行的方法,重定向到该Action中的另一个方法,请问这个result该怎么写,另外这个Action是在默认根包下

相关推荐

    Struts2插件convention

    Struts2插件convention

    struts2的convention插件使用.docx

    struts2的convention插件使用.docx )

    struts2-Convention插件使用

    struts2-Convention插件详细使用

    STRUTS2 Convention零配置

    从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...

    struts2的Convention插件说明书(中文版)

    无需配置Convention即可使用Convention,Convention的某些约束习惯可以通过配置属性来控制,您也可以在类中覆写其中的方法来达到扩展目地。

    struts2 convention plugin(插件) 测试项目

    struts2 convention plugin(插件)测试项目

    Struts2-rest插件(有注释)

    从 Struts 2.1 开始,Struts 2 改为使用 Convention 插件来支持零配置。Convention 插件彻底地抛弃了配置信息,不仅不需要使用 struts.xml 文件进行配置,甚至不需要使用 Annotation 进行配置。而是由 Struts 2 根据...

    如何使用struts2的零配置插件convention

    如何使用插件convention来实现struts2框架的零配置以及整合ssh架构

    struts2零配置convention-plugin

    从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...

    struts2的rest风格插件实例

    将 Struts 2 项目下 struts2-convention-plugin-2.1.6.jar、struts2-rest-plugin-2.1.6.jar 两个 JAR 包复制到 Web 应用的 WEB-INF/lib 路径下。 由于 Struts 2 的 REST 插件还需要将提供 XML、JSON 格式的数据,...

    struts2-convention-plugin-2.3.15.2

    Struts开始使用convention-plugin代替codebehind-plugin来实现struts的零配置,使用Convention插件,你需要此JAR文件

    struts2-convention-plugin-2.1.6.jar

    Struts2 的第三方插件 使用注解的方式配置struts.xml文件

    SSH整合+struts convention插件小示例

    SSH整合+struts convention插件小示例 全程使用注解扫包,无struts action的配置文件,无Hibernate配置文件, Spring自动扫包来获取bean 数据库内容太简单,不再上传。 只是一个小实例。 请用MyEclipse导入项目。 我...

    Struts2注解使用说明文档

    从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...

    struts2零配置个人整理文档

    1 Convention插件 1.1 设置结果页面路径 默认所有的结果页面都存储在WEB-INF/content下,你可以通过设置struts.convention.result.path这个属性的值来改变到其他路径。如: Xml代码 &lt;constant name="struts....

    struts2注解详解

    从struts2.1开始,struts2不再推荐使用Codebehind作为零配置插件,而是改为使用Convention插件来支持零配置,和Codebehind相比,Convention插件更彻底,该插件完全抛弃配置信息,不仅不需要是使用struts.xml文件进行...

    Struts2权威指南完整版

    改为使用Convention插件提供“零配置”,Struts 2.1新增了Portlet支持……为了让众多Struts学习者、工作者快速从Struts 2.0的开发升级到Struts 2.1,笔者升级了《Struts 2权威指南》,第二版改写了第一版中所有程序...

    struts2注解详细说明

    Hello world到目前为止,你已经在你项目中添加了Convention插件支持,首先我们从一个非常简单的例子开始入手。本例中,我们将演示根据访问URL来访问固定的Action,默认情况下,Convention会默认所

    Struts 2 远程代码执行漏洞(s2-045\s2-046)修复所用到的包

    2.如果您使用基于Jakarta插件,请升级到Apache Struts 2.3.32或2.5.10.1版本。(强烈推荐) 3.升级到2.3.32所用到的jar包: freemarker-2.3.22.jar ognl-3.0.19.jar struts2-convention-plugin-2.3.32.jar struts2-...

Global site tag (gtag.js) - Google Analytics