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

struts2的配置

时间:2017-06-11 23:28:46      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:struts2配置

xml绑定本地约束的方法:

     window-->preferences(-->MyEclipse-->Files and Editors)-->XML-->XML Catalog-->user specified Entires-->Add 中:


     在出现的窗口中的Key Type 中选择URI,在location中选“File system”,然后再spring解压目录的dist/resources目录中选择spring-beans-2.5.xsd,Key Type 改为Schema Location,Key 改为在最后面的内容加上spring-beans-2.5.xsd



Struts2的介绍:

     技术分享

Struts2的基本流程:

技术分享

    


struts2的导包:此保中的jar包为基本包

     struts-2.3.24\apps \ struts2-blank.war\WEB-INF\lib -


struts2的struts.xml约束文件:copy到新建xml中

   struts2-core-2.3.24.jar/struts-2.3.dtd


src下的strets.xml的配置信息

<struts>

      

     

      

      

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


配置web.xml中的filter参数


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

  </filter-mapping>


//------------------------------------------------------------------------------------------------------------------------


struts默认常量配置:

     默认配置文件:struts2-core-2.3.24.jar/org.apache.struts2/default.properties


修改默认常量的方法:(按顺序读取配置文件中的信息,可能会覆盖)



方式1:src/struts.xml

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

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

struts.i18n.encoding=UTF8

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

 <!-- 配置常量

  <context-param>

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

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

  </context-param>

  -->


默认常量的默认配置:


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

             <result  >/hello.jsp</result>

         </action>

 </package>


方法的动态调用:


<struts>

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

                        默认是关闭的,需要开启

             -->

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

</struts>

//--------------------------------------------------------------------------


action类的详解

//方式1: 创建一个类.可以是POJO

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

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

public class Demo3Action {

}


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

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

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

public class Demo4Action implements Action {

      @Override

      public String execute() throws Exception {

            return null;

      }

}


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

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

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

com.opensymphony.xwork2.包下的;

public class Demo5Action  extends ActionSupport{

}


struts2的配置

标签:struts2配置

原文地址:http://gsanye.blog.51cto.com/12981085/1934300

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