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

Struts2学习(1)

时间:2018-11-03 19:16:12      阅读:161      评论:0      收藏:0      [点我收藏+]

标签: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过滤器

 

Struts2学习(1)

标签:http   配置方法   返回   software   bsp   核心   方法   end   ace   

原文地址:https://www.cnblogs.com/liaoxiaolao/p/9901650.html

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