美文网首页
day38 struts2

day38 struts2

作者: 路人爱早茶 | 来源:发表于2017-11-18 17:25 被阅读0次
    • 找项目-找filter-主配置文件-namespace-name-根据class地址创建相应class-根据method调用方法-根据result name查找相应的文件名
    • aop 面像切面编程 纵向重复代码横向抽取

    1.概述

    • 作用于web层面
    • Struts2和struts1没什么关系,前身是webwork
    • 优势,作用于filter层面,没有servlet线程安全问题
    • 自动封装参数,参数校验,结果的处理(转发|重定向),国际化,显示等待页面,表单的防止重复提交,struts2具有更加先进的架构以及思想

    2.搭建框架

    • 导包,在apps事例中有一个空白案例,导其中lib
    • action类


      image.png
    public class HelloAction {
        public String hello(){      
            System.out.println("hello world!");     
            return "success";
        }   
    }
    ----------------------------scr/struts..xml---注意不能写错否则读取不到
    - 注意需要导入约束需要window-preferences-xmlcatalog-需要先把dtd内容复制出来然后同名
    <!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>
    ----------------------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>
    
    • struts2访问架构


      image.png
    1. 配置进阶
    • 动态加载方法
      ···
      <struts>

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

    • 默认配置
    <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"   >
                    <result  >/hello.jsp</result>
                </action>
            </package>
    </struts>
    
    • action类常用书写方式案例
    public class CustomerAction extends ActionSupport {
        private CustomerService cs = new CustomerServiceImpl();
    public String list() throws Exception {
            //1 接受参数
            String cust_name = ServletActionContext.getRequest().getParameter("cust_name");
            //2 创建离线查询对象
            DetachedCriteria dc =DetachedCriteria.forClass(Customer.class);
            //3 判断参数拼装条件
            if(StringUtils.isNotBlank(cust_name)){
                dc.add(Restrictions.like("cust_name", "%"+cust_name+"%"));
            }
            //4 调用Service将离线对象传递
            List<Customer> list = cs.getAll(dc);
            //5 将返回的list放入request域.转发到list.jsp显示
            ServletActionContext.getRequest().setAttribute("list", list);
            return "list";
        }}
    ---------------dao方法
    public List<Customer> getAll(DetachedCriteria dc) {
            //1 获得session
                    Session session = HibernateUtils.getCurrentSession();
            //2 将离线对象关联到session
                    Criteria c = dc.getExecutableCriteria(session);
            //3 执行查询并返回
            return c.list();
        }
    ---------配置struts
    <struts>
        <!-- 指定struts2是否以开发模式运行
                1.热加载主配置.(不需要重启即可生效)
                2.提供更多错误信息输出,方便开发时的调试
         -->
        <constant name="struts.devMode" value="true"></constant>
        <package name="crm" namespace="/" extends="struts-default" >
            <action name="CustomerAction_*" class="cn.itheima.web.action.CustomerAction" method="{1}" >
                <result name="list" >/jsp/customer/list.jsp</result>
            </action>
        </package>
    </struts>
    ----------------配置核心filter
    
    
    

    相关文章

      网友评论

          本文标题:day38 struts2

          本文链接:https://www.haomeiwen.com/subject/czjjvxtx.html