<?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.action.extension" value="do,,"></constant> <package name="default" namespace="/" extends="struts-default"> <!-- 在这里配置 action --> <!-- 下面的意思是:hello是请求地址,我让class类里面的method属性的方法去执行 如果没有设置的method的话,那么就执行名字是execute的方法,这个是默认值 然后的话,class也是有默认值的,不过一般都不用 --> <action name="hello" class="com.itheima.action.HelloAction" method="sayHello"> <!-- 配置跳转的页面 执行方法return的是什么字符串,这个name属性就写什么字符串, --> <result name="ok" type="">/demo1/suc.jsp</result> </action> </package> <!-- 引入其他的配置文件,但是用到的概率不到,了解一下就ok --> <include file="com/iteima/user/struts_user.xml"></include> </struts>
时间: 2024-11-03 01:17:36