码迷,mamicode.com
首页 > 其他好文 > 详细

struts2使用通配符调用action

时间:2018-01-24 13:58:48      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:2.3   action   pre   result   date()   names   struts   index   名称   

struts2配置文件代码:

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE struts PUBLIC 
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"  
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
	<constant name="struts.devMode" value="true" />
	<package name="student" namespace="/student" extends="struts-default">
		<action name="*_*" class="com.dbj.action.{1}Action" method="{2}">
			<result>/hello.jsp</result>
		</action>
		<action name="Student_add" class="com.dbj.action.StudentAction" method="add">
			<result>/index.jsp</result>
		</action>
	</package>
</struts>
Java后台代码:
public class StudentAction extends ActionSupport{

	public String add() {
		System.out.println("add");
		return SUCCESS;
	}
	
	public String update() {
		System.out.println("update");
		return SUCCESS;
	}
	
	public String search() {
		System.out.println("search");
		return SUCCESS;
	}
}

  浏览器URL:http://localhost:8080/01Struts2/student/Student_add.action

action name="*_*"中的第一个*匹配的是Student,第二个*匹配add;

class="com.dbj.action.{1}Action" method="{2}":{1}=Student,{2}=add;
调用结果返回hello.jsp;
如果配置文件中有一个action的名称和Student_add完全匹配,则调用匹配最精确地action
如上述配置文件中则返回index.jsp;

struts2使用通配符调用action

标签:2.3   action   pre   result   date()   names   struts   index   名称   

原文地址:https://www.cnblogs.com/dbj66/p/8340925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!