使用通配符*_*模式

struts.xml

<!-- 使用通配符*_* -->
		<action name="*_*" class="org.sadhu.app.action.{1}" method="{2}">
			<!-- 定义三个逻辑视图和物理资源之间的映射 -->
			<result name="input">/login.jsp</result>
			<result name="error">/error.jsp</result>
			<result name="success">/welcome.jsp</result>
		</action>

login.jsp

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<!-- 引用struts2的标签库 -->
<%@taglib prefix="s" uri="/struts-tags" %>
<!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>
	<s:text name="loginPage" />
</title>
<script language="javascript" type="text/javascript">
	function regist()
	{
		var targetForm = document.forms[0];
		targetForm.action = "RegistAction_regist";
	}
</script>
</head>
<body>
	DMI,动态方法调用 actionName!methodName
	<form action="" method="post">
	<input type="text" name="userName" /><br/>
	<input type="password" name="password" /><br/>
	<input type="submit" value="注册" onclick="regist();" />
	</form>
</body>
</html>


你可能感兴趣的:(使用通配符*_*模式)