我们知道一个action可以映射到某个类中的某个方法就,加一个method的设置就好,像这样
<action name="testLogin" class="action.testAction" method="test">
但是如果我有超级多的方法要一个一个访问可怎么办呢?
方法一可以使用通配符*,这个我在另一篇文章中写了,这里就不再赘述了
struts.xml中
<package name="test" namespace="/myspace" extends="struts-default"> <action name="MethodAction" class="action.MethodAction"> <result>/content/success.jsp</result> </action> </package>
MethodAction.java中
package action; import com.opensymphony.xwork2.ActionSupport; public class MethodAction extends ActionSupport { @Override public String execute() throws Exception { // TODO Auto-generated method stub System.out.println("This is MethodAction"); return super.execute(); } public String add() throws Exception { System.out.println("This is MethodAction add()"); return SUCCESS; } public String del() throws Exception { System.out.println("This is MethodAction del()"); return SUCCESS; } }jsp示例页面中
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags" %> <!DOCTYPE html> <html> <head> <Meta charset="utf-8"> <title></title> </head> <body> <s:a action="MethodAction!add" namespace="/myspace">添加</s:a> <s:a action="MethodAction!del" namespace="/myspace">删除</s:a> </body> </html>这样当我们点击添加的时候就可以跳转到MethodAction中的add方法,点击删除跳转到del
而且xml也很简洁
原文链接:https://www.f2er.com/xml/295991.html