web.xml中配置Struts的入口Servlet——ActionServlet,ActionServlet不负责任何的业务处理,它只是查找Action名单,找到path属性与URL属性一致的Action,把请求交给该Action处理

<servlet>
      <servlet-name>action</servlet-name>     <!-- Sevrvlet名称-->
      <servlet-class>
             org.apache.struts.action.ActionServlet  <!-- Servlet实现类-->
      </servlet-class>
      <init-param>
             <param-name>config</param-name>   <!-- 配置文件,多个可以用逗号分隔-->
             <param-value>/WEB-INF/struts-config.xml</param-value>
      </init-param>
<servlet>

<servlet-mapping>
      <servlet-name>action</servlet-name>
      <url-pattern>*.do</url-pattern>     <!-- 截获所有以.do结尾的请求-->
</servlet-mapping>

配置命名空间

<param-name>config/ namespace1</param-name>
<param-value>/WEB-INF/struts-config-namespace1.xml</param-value>

当请求是”/namespace1/hello.do”时会调用struts-config-namespace1.xml里面的Action;当请求是”/hello.do”时会调用struts-config.xml里面的Action

struts-config.xml

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE struts-config PUBLIC "-//Apache SoftwareFoundation//DTD Struts Configuration 1.2//EN""http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd"> 

<struts-config>
      <!--配置数据源,需要commons-pool.jar和commons-dbcp.jar--->
      <data-source type="org.apache.commons.dbcp.BasicDataSource">
             <set-property property="driverClassName"  value="com.mysql.jdbc.Driver"/>
             <set-property property="url"  value="jdbc:mysql://localhost:3306/databaseName?charaterEncoding=utf8"/>
             <set-property property="username" value="root"/>
             <set-property property="password" value="admin"/>
      </data-source>

      <form-beans>  <!--FormBean配置-->
             <form-bean name="firstForm" type="com.clf.struts.form.HelloForm"/>
             <form-bean name="otherForm" type="com.clf.struts.form.OtherForm"/>

      </form-beans>

      <!--全局异常-->
      <global-exceptions>
          <exception key="error.email. invalid"
             type="java.lang.Exception"
             path="/error.jsp"
             handler="exceptions.EmailException"/>
      </global-exceptions>

      <!--全局forward,可以被Action访问-->
      <global-forwards>
        <forward name="myforward" path="/mystruts/newProduct.jsp" />
      </global-forwards>

      <action-mapping>

             <action attribute="firstForm"       <!--FormBean在request域中的属性名,request.getAttribute(“firstForm”)-->
             input="/form/hello.jsp"    <!--输入页面,Action中执行mapping.getInputForward()将转到该页-->
             name="firstForm"           <!--FormBean类型,与form-beans的name一致-->
             path="/hello"                    <!--访问路径"/hello.do"-->
             scope="request"               <!--作用域,包括request、session-->
             type="com.clf.struts.action.HelloAction"                   <!--实现类-->
             >

                    <forward name="success" path="/form/success.jsp"/>                 <!-- 跳转页面-->
                    <forward name="fail" path="/form/fail.jsp" redirect="true"/>                  <!--redirect 表示跳转到此页面的方式,默认false时,执行request.getRequestDispatcher("").forward();为true时,执行response.redirect()-->
             </action>

      </action-mapping>
      <!--国际化资源-->
      <message-resource parameter="com.clf.struts.ApplicationResources"/>

      <!--可以用来覆盖一些默认的Struts设置,还可以用来配置第三方控制器,比如Spring-->
      <controller
      <!--指定在文件上传时的最大文件尺寸。可以使用K、M和G作为单位,必须为整数-->
      maxFileSize="2M"
      <!--指定默认的ContentType字段值-->
      contentType = "text/html"
      <!--告诉Struts是否应该缓冲内容。默认为true-->
      nocache = "false" />

      <!--  配置插件-->
      <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
     <set-property property="pathnames"
         value="/WEB-INF/validator-rules.xml,/WEB-INF/validations.xml"/>
     <set-property property="pathnames" value="false"/>
      </plug-in>

</struts-config>

Struts能够自动转化常用的数据类型,例如int、double等以及java.sql.Date、POJO等,如果变量是int、double、float等数字类型,格式不正确会当做0,如果为Date、Time等复杂类型,格式不对时会抛出异常

Struts不会自动创建POJO对象,在FormBean里面用到的时候,必须用new实例化一个POJO对象

public classUserBean extends ActionForm{
      private Person person = new Person();
      ……
}

JSP页面显示对象的属性用“.”操作符

<html:text property="person.name"></html:text>

Action由Struts的ActionServlet产生并维护,每个Action都置于一个实例,在加载Struts时产生,在卸掉Struts时销毁,因此Actin和Servlet一样,都是线程不安全的

而FormBean在每次请求时都会生成一个新的实例,因此是线程安全的

Struts 1 之配置文件的更多相关文章

  1. struts几个配置文件加载顺序_2015.01.04

    struts几个配置文件加载顺序: 01:struts-default.xml 02:struts-plugin.xml 03:struts.xml 04:struts.properties 05:w ...

  2. Struts按着配置文件的加载的顺序,后面文件和前面文件相同的配置,后面的会把前面的文件的值覆盖

    Struts按着配置文件的加载的顺序,后面文件和前面文件相同的配置,后面的会把前面的文件的值覆盖

  3. 2018.12.15 struts.xml 一般配置文件写法 && 配置动态方法

    struts.xml 原始配置文件 配置 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE s ...

  4. Struts 2 之配置文件

    Struts 1使用ActionServlet作为分发器,而Struts 2使用Filter作为分发器.如果有多个Filter,要把Struts 2的分发器Filter放在最后 web.xml < ...

  5. struts 1.x配置文件说明

    <struts-config> <global-exceptions /> <!--全局映射定义--> <global-forwards> <fo ...

  6. 【JavaEE企业应用实战学习记录】struts配置文件详细解析

    <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-/ ...

  7. Struts配置文件以Spring的方式实现自定义加载

    在使用struts时,我们需要在web.xml中配置过滤器,同时我们需要配置struts的配置文件路径来加载项目中struts的相关配置信息.如果我们不配置路径的话,Struts会有一些默认的加载路径 ...

  8. Struts的文件上传下载

    Struts的文件上传下载 1.文件上传 Struts2的文件上传也是使用fileUpload的组件,这个组默认是集合在框架里面的.且是使用拦截器:<interceptor name=" ...

  9. Struts相关

    使用Struts2流程: 1.导入Struts2类包 2.在Web源代码文件夹中,创建名为struts.xml的配置文件.在其中定义Action对象,其关键代码如下: struts.xml: < ...

随机推荐

  1. SSH执行hql报错:Caused by: org.hibernate.hql.ast.QuerySyntaxException: user is not mapped [from user where username = ?]

    报错信息: ERROR Dispatcher:38 - Exception occurred during processing request: user is not mapped [from u ...

  2. 使用Keras对交通标志进行分类

    # 使用Keras对交通标志进行分类 一.概述 本文主要记录的在使用Keras过程中,实现交通标志分类,数据集使用的是. 文本主要使用的环境为: Python3.5.2 Tensorflow 1.7 ...

  3. [USACO17JAN]Promotion Counting晋升者计数

    题目描述 奶牛们又一次试图创建一家创业公司,还是没有从过去的经验中吸取教训--牛是可怕的管理者! 为了方便,把奶牛从 1 \cdots N(1 \leq N \leq 100, 000)1⋯N(1≤N ...

  4. [HDU]4694 Important Sisters(支配树)

    支配树模板 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; ...

  5. poj 1811 随机素数和大数分解(模板)

    Sample Input 2 5 10 Sample Output Prime 2 模板学习: 判断是否是素数,数据很大,所以用miller,不是的话再用pollard rho分解 miller : ...

  6. python中常见错误及try-except 的用法

    1.常见的错误 我们在使用python过程中会出现: (1)SyntaxError 句法错误. (2)IndentationError 缩进错误. (3)NameError 变量未定义错误. (4)T ...

  7. C语言程序设计第二次作业—————顺序结构改

    1.输出带框文字:在屏幕上输出以下3行信息. ************* Welcome ************* 源程序 #include <stido.h> int mian() { ...

  8. glusterfs 4.0.1 rpc 分析笔记2 (socket.so 模块)

    socket.c在4000行位置定义了一组结构函数,我们可以从这里开始找到入口,如果是客户端则需要调用connect, 如果是服务端则需要调用listen, struct rpc_transport_ ...

  9. c# datatable row

    在指定索引位置插入新行 string fzmc = rs["fzmc"].ToString(); string mkmc = rs["mkmc"].ToStri ...

  10. Django笔记--模型

    ORM是"对象-关系-映射"的简称,在Django当中,ORM就是模型类的管理器对象.操作顺序是先定义模型类,再定义模型类管理器,然后在模型类中实例化一个模型类管理器的对象,作为模 ...