标签:http 配置方法 返回 software bsp 核心 方法 end ace
struts2概述
1.struts2框架应用javaee三层结构中web层框架。
2.strut2框架在struts1和webwork基础之上发展全新的框架。
3.struts2解决的问题:
4.版本:struts2.3.24
5.web层常见框架
(1)struts2
(2)springMVC
Struts2框架入门
配置action类访问路径
(1)创建struts2核心配置文件
-核心配置文件名和位置是固定的,
-位置必须在src下面,名称struts.xml
(2)引入dtd约束
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd">
struts.xml基本配置
<struts> <package name="hellodemo" extends="struts-default" namespace="/"> <!-- name:访问名称 --> <action name="hello" class="cn.itcast.action.HelloAction"> <!-- 配置方法的返回值到页面 --> <result name="ok">/hello.jsp</result> </action> </package> </struts>
配置struts2过滤器
标签:http 配置方法 返回 software bsp 核心 方法 end ace
原文地址:https://www.cnblogs.com/liaoxiaolao/p/9901650.html