javaEE Struts2, 核心配置文件src/struts.xml, 配置默认常量, Action配置

运行流程(请求、响应过程):

Struts2的默认常量的配置有三种方式:src/struts.xml文件(推荐) 、src/strtus.properties文件、web.xml文件中配置。后面文件的配置会覆盖前面文件中相同的配置。

 

src/struts.xml(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>
	
	<!-- 默认常量配置 -->
	<!-- i18n:国际化. 解决post提交乱码 -->
	<constant name="struts.i18n.encoding" value="UTF-8"></constant>
	<!-- 指定访问action时的后缀名 (两逗号表示 或者为空)
		http://localhost:8080/MyWeb/hello/HelloAction.action
	-->
	<constant name="struts.action.extension" value="action,,"></constant>
	<!-- 指定struts2是否以开发模式运行
			1.热加载(reload)主配置.(不需要重启即可生效src/struts.xml)
			2.提供更多错误信息输出,方便开发时的调试
	 -->
	<constant name="struts.devMode" value="true"></constant>
	
	<!-- package:将Action配置封装.就是可以在Package中配置很多action. (package一般封装一个功能模块)
			name属性: 给包起个名字,起到标识作用(给开发人员看的,Struts不看).随便起.不能与其他包名重复.
			namespace属性:给action的访问路径(URL)中定义一个命名空间
			extends属性: 继承一个 指定包
			abstract属性:包是否为抽象的; 标识性属性(给开发人员看的,Struts不看).标识该包不能独立运行,专门被继承
	  -->
	<package name="hello" namespace="/hello" extends="struts-default" >
		<!-- action元素:配置action类
				name属性: 决定了Action访问资源名(URL).
				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配置文件。将某些配置写在单独的xml文件中 -->
	<include file="cn/xxx/demo/struts.xml"></include>
</struts>

web.xml(web应用核心配置文件,配置Struts2的核心过滤器):

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>MyWeb</display-name>
  <!-- 配置默认常量   会覆盖src/strtus.properties和src/struts.xml中的常量配置;建议在struts.xml中配置默认常量
  <context-param>
  	<param-name>struts.i18n.encoding</param-name>
  	<param-value>UTF-8</param-value>
  </context-param>
  -->
  
  <!-- struts2核心过滤器 -->
  <filter>
  	<filter-name>struts2</filter-name>  <!-- 过滤器名可以自定义 -->
  	<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>  <!-- 固定的核心类名 -->
  </filter>
  <filter-mapping>
  	<filter-name>struts2</filter-name>
  	<url-pattern>/*</url-pattern>  <!-- /*并不会过滤.jsp页面 .js .css .jpg 等-->
  </filter-mapping>
  
  
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

 

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值