Struts2的介绍、搭建

架构概念:




Strus2搭建:

1、导包:可在App事例中解压war获取事例工程,从中获取必要的包


2、书写Action类


3、约束,配置文件

在包中找最新约束 struts-2.3dtd


复制


在XML catalog 添加


填写dtd文件路径、选择URI、输入约束里的网址


在src下新建一个名为struts.xml文件


将struts2核心过滤器配置到web.xml (control shift T  可查找完整类名)



strus2访问流程


配置详解





struts2常量配置

struts2默认常量配置位置


修改struts2常量配置(方法顺序也是加载顺序)重点掌握第一种配置方法

1.在src下创建struts.xml


方式2:在src下创建struts.properties



方式3:在项目的web.xml中


顺序


常量配置




struts2配置的进阶

动态方法调用方式一:



动态方法调用方式二(主要使用):




struts2中的默认配置


action类详解

Action类的书写方式一:


Action类的书写方式二:


Action类的书写方式三(主要使用):





备注:


<?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/struts2_day01/hello/HelloAction.do
	-->
	<constant name="struts.action.extension" value="action"></constant>
	<!-- 指定struts2是否以开发模式运行
			1.热加载主配置.(不需要重启即可生效)
			2.提供更多错误信息输出,方便开发时的调试
	 -->
	<constant name="struts.devMode" value="true"></constant>
	
	

	<!-- 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="cn/itheima/b_dynamic/struts.xml"></include>
	<include file="cn/itheima/c_default/struts.xml"></include>
</struts>


struts-day01


1.什么是struts2
1>运行在web层.负责处理请求的.
2>struts2已经帮我们封装了很多web中常用的功能(拦截器)
3>struts2 与 struts1 没什么关系. struts2是基于webwork框架

2.struts2框架搭建
1> 导包 
|- struts2/apps/struts-blank.war/WEB-INF/lib

2> 书写Action

3> 书写 主配置文件 src/struts.xml

4> 在web.xml 配置 过滤器
|- strutsprepareAndExecuteFilter


3.struts2 架构




4.配置详解
struts2 核心配置
<struts>
<package name namespace extens >
<action name class method >
<result name type >

struts2 常量配置
解决乱码
后缀名配置
开发模式
开启!动态方法调用

动态方法调用
XXXAction_* =>   {1} 

5.Action创建
1> POJO 普通java类.不需要继承,不需要实现
2> 实现Action接口. 
3> 继承ActionSupport.

  Action方法
public String xx() throws Exception{}
















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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值