struts2_1

\01-struts2介绍_.

 

struts2是什么

 

struts2的优势:

自动封装参数

参数校验

结果的处理(转发|重定向)

国际化

显示等待页面

表单的防止重复提交

 

struts2具有更先进的架构以及思想

 

struts2的历史

 

02-struts2框架-搭建演示_

a导包


 

b书写action

package cn.itheima.a_hello;

 

public class HelloAction {

 

public String hello(){

System.out.println("hello world!");

return "success";

}

}

 

 

c书写 struts.xml

 

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

 

d:filter配置在web.xml

 

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

  </filter-mapping>

 

http://localhost:8080/struts2_01/hello/HelloAction.action

 

03-struts2框架-架构展示_

 

04-struts2学习流程分析_

 




05-struts2配置详解-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/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>

 

06-struts2配置详解-struts2常量配置_

 

struts2默认常量在哪里?

 

 

 


修改常量配置

 

修改方式一

 


 

struts.i18n.encoding=UTF8

 

 

修改方式二

struts.xml

<constant name="struts.i18n.encoding" value="UTF-8"></constant>

修改方式三

web.xml

<!-- 配置常量

  <context-param>

  <param-name>struts.i18n.encoding</param-name>

  <param-value>UTF-8</param-value>

  </context-param>

  -->

 

修改常量

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

07-struts2配置进阶-动态方法调用_(通配符匹配action)

<!-- 配置动态方法调用是否开启常量

默认是关闭的,需要开启

 -->

<!-- 方式一:设置为true

访问路径为:http://localhost:8080/struts2_01/dynamic/Demo1Action!delete.action

以!号为例

 

   -->

<constant name="struts.enable.DynamicMethodInvocation" value="false"></constant>

、、、、、、、、、、、、、、、、、、、、、、、、、、、、、

第二种方法

<package name="dynamic" namespace="/dynamic" extends="struts-default" >

<!-- 动态方法调用方式2:通配符方式

 使用{1} 取出第一个星号通配的内容

  -->

<action name="Demo1Action_*" class="cn.itheima.b_dynamic.Demo1Action" method="{1}" >

<result name="success" >/hello.jsp</result>

</action>

、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、

</package>

08-struts2配置进阶-默认值_

<struts>

<package name="default" namespace="/default" extends="struts-default" >

<!-- 找不到包下的action,会使用Demo2Action作为默认action处理请求 -->

<!-- <default-action-ref name="Demo2Action"></default-action-ref> -->

<!-- method属性:execute  -->

<!-- result的name属性:success  -->

<!-- result的type属性:dispatcher 转发  -->

<!-- class属性:com.opensymphony.xwork2.ActionSupport -->

<action name="Demo2Action" class="cn.itheima.c_default.Demo2Action"  >

<result  >/hello.jsp</result>

</action>

</package>

</struts>

09-struts2 action创建方式_

package cn.itheima.d_api;

 

//方式1: 创建一个类.可以是POJO,plain ordinary java object

//POJO:不用继承任何父类.也不需要实现任何接口.

//使struts2框架的代码侵入性更低.

public class Demo3Action {

 

}

 

package cn.itheima.d_api;

 

import com.opensymphony.xwork2.Action;

 

//方式2: 实现一个接口Action

// 里面有execute方法,提供action方法的规范.

// Action接口预置了一些字符串.可以在返回结果时使用.为了方便

public class Demo4Action implements Action {

 

@Override

public String execute() throws Exception {

return null;

}

 

}

package cn.itheima.d_api;

 

import com.opensymphony.xwork2.ActionSupport;

 

//方式3: 继承一个类.ActionSupport

// 帮我们实现了 Validateable, ValidationAware, TextProvider, LocaleProvider .

//如果我们需要用到这些接口的实现时,不需要自己来实现了.

public class Demo5Action  extends ActionSupport{

 

}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值