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

Struts2 配置文件struts.xml详解

时间:2018-11-14 14:18:09      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:xxx   运行   highlight   ESS   其他   封装   war   dispatch   分享图片   

我们先来看一段struts.xml

<?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>

	<package name="hello" namespace="/hello" extends="struts-default">
		<action name="hellAction" class="com.sunday.action.HelloAction"  method="hello">
			<result name="success" >/hello.jsp</result>
		</action>
	</package>
	<!-- 引入其他struts配置文件 -->
	<include file="com/sunday/action/struts.xml"></include>
	<include file="com/sunday/action/dynamic/struts.xml"></include>
	<include file="com/sunday/defaultAction/struts.xml"></include>
		
</struts>  

下面我们来详细讲解下struts.xml

  • 导入约束

        技术分享图片

        查看sturts2-core-xxx.jar中struts-default.xml文件

技术分享图片

  复制如下代码到我们新建的struts.xml中

  技术分享图片

 

  • 元素详解
    <!-- package:将Action配置封装.就是可以在Package中配置很多action.
            name属性: 给包起个名字,起到标识作用.随便起.不能其他包名重复.
            namespace属性:给action的访问路径中定义一个命名空间
            extends属性: 继承一个 指定包
            abstract属性:包是否为抽象的; 标识性属性.标识该包不能独立运行.专门被继承
      -->
    <package name="hello" namespace="/hello" extends="struts-default" >
        <!-- action元素:配置action类
                name属性: 决定了Action访问资源名.
                class属性: action的完整类名
                method属性: 指定调用Action中的哪个方法来处理请求
         -->
        <action name="HelloAction" class="cn.itheima.a_hello.HelloAction" method="hello" >
            <!-- result元素:结果配置 
                    name属性: 标识结果处理的名称.与action方法的返回值对应.
                    type属性: 指定调用哪一个result类来处理结果,默认使用转发.
                    标签体:填写页面的相对路径
            -->
            <result name="success" type="dispatcher" >/hello.jsp</result>
        </action>
    </package>

 

  • 引入其他配置文件
    <!-- 引入其他struts配置文件 -->
    <include file="com/sunday/action/struts.xml"></include>    

 

Struts2 配置文件struts.xml详解

标签:xxx   运行   highlight   ESS   其他   封装   war   dispatch   分享图片   

原文地址:https://www.cnblogs.com/sharp367/p/9957347.html

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