`
mqzsweet
  • 浏览: 134881 次
  • 性别: Icon_minigender_1
  • 来自: 江苏
社区版块
存档分类
最新评论

完整struts-config.xml

阅读更多
xml 代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">  
  3.   
  4. <struts-config>  
  5. <data-sources>  资源配置
  6.     <data-source key="dataSource" type="org.apache.commons.dbcp.BasicDataSource">  
  7.         <set-property property="driverClassName" value="net.sourceforge.jtds.jdbc.Driver"/>  
  8.         <set-property property="url" value="jdbc:jtds:sqlserver://localhost:1433/db_database03"/>  
  9.         <set-property property="username" value="sa"/>  
  10.         <set-property property="password" value=""/>  
  11.         <set-property property="driverClass" value="true"/>  
  12.         <set-property property="readOnly" value="false"/>  
  13.         <set-property property="autoCommit" value="false"/>  
  14.         <set-property property="loginTimeout" value="500"/>  
  15.         <set-property property="minCount" value="1"/>  
  16.         <set-property property="maxCount" value="10"/>  
  17.     </data-source>  
  18. </data-sources>  
  19.   
  20. <form-beans>  ActionForm配置
  21.     <form-bean name="userInfoForm" type="com.form.UserInfoForm" />  
  22.     <form-bean name="userForm" type="org.apache.struts.action.DynaActionForm">  
  23.         <form-property name="username" type="java.lang.String" />  
  24.         <form-property name="id" type="java.lang.Integer" />  
  25.     </form-bean>  
  26. </form-beans>  
  27.   
  28. <global-exceptions>  全局异常配置
  29.     <exception key="error" type="java.lang.Exception" path="/error.jsp" scope="request"/>  
  30. </global-exceptions>  
  31.   
  32.   
  33.  <global-forwards>  全局转发配置
  34.     <forward name="forwardAction" path="/index.jsp" redirect="true" contextRelative="true"/>  
  35.     <forward name="login" path="/login.jsp"></forward>  
  36.  </global-forwards>  
  37.   
  38.   
  39.   
  40.   
  41.   
  42.   
  43.   
  44. <action-mappings >  Action配置
  45.     <action  
  46.       input="/index.jsp"  
  47.       attribute="userInfoForm"  
  48.       name="userInfoForm"  
  49.       path="/userInfo"  
  50.       scope="request"  
  51.       type="com.action.UserInfoAction">  
  52.       <forward name="userAction" path="/indexAction.jsp"></forward>  局部转发
  53.       </action>  
  54.      <action path="/user" forward="/forward.jsp"></action>  局部转发
  55.   </action-mappings>  
  56.   
  57.   
  58. <controller contentType="text/html;charset=UTF-8" locale="true" processorClass="com.dao.UserInfo"/>  自定义控制器配置
  59.   
  60.   
  61.   
  62.   
  63.   
  64.   
  65.   <message-resources parameter="com.ApplicationResources" />  资源文件配置
  66.      
  67.      
  68.  <plug-in className="org.apache.struts.validator.ValidatorPlugIn">  插件配置
  69.     <set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />  
  70.  </plug-in>  
  71.      
  72.      
  73.      
  74.      
  75. </struts-config>  
  76.   

 

使用时将中文去掉

分享到:
评论

相关推荐

    Struts框架中struts-config.xml文件配置小结

    ### Struts框架中struts-config.xml文件配置详解 #### 一、引言 在Java Web开发领域,Struts是一个非常重要的MVC(Model-View-Controller)框架,它极大地简化了Web应用程序的开发过程。而在Struts框架中,`struts...

    Struts struts-config.xml配置

    ### Struts struts-config.xml配置详解 #### 一、引言 在Java Web开发领域,Struts框架一直是构建MVC架构应用的重要工具之一。而`struts-config.xml`配置文件则是Struts应用的核心配置文件,它负责管理Struts应用中...

    struts-config.xml struts标准配置文件 struts-config

    struts-config.xml struts标准配置文件 struts-config

    struts-config.xml

    `struts-config.xml`是Struts框架的核心配置文件,它定义了应用的各个组件及其交互方式。下面将详细介绍这个配置文件的主要元素和子元素。 ### 主要元素 1. **`&lt;data-sources&gt;`**: 这个元素用于配置数据源,通常...

    配置struts--config.xml详解

    在 Struts 应用程序中,`struts-config.xml` 文件是核心配置文件,它定义了应用的行为、控制器(Actions)、数据源(Form Beans)以及视图(JSP 页面)之间的关系。本文将深入探讨 `struts-config.xml` 的主要元素和...

    struts-config.xml配置文件详解

    Struts-config.xml 配置文件详解 Struts-config.xml 是 Struts 框架的主要配置文件,用于配置 Struts 应用程序的各种设置。在该文件中,可以配置数据源、Form Bean、Action 和插件等信息。下面是 Struts-config.xml...

    Struts-config.xml配置详解

    Struts的配置文件通常命名为struts-config.xml,它是整个Struts应用的核心配置文件,通过定义一系列的XML元素来设定框架的不同功能和行为。下面将详细介绍struts-config.xml中8个主要配置元素的功能和使用方法。 1....

    org.springframework.web.struts-3.1.0.M2.jar

    同时,Struts的配置文件(struts-config.xml或struts2的struts.xml)也需要进行相应的调整,引入Spring的插件和配置信息。 `springframework-license.txt`文件则包含了Spring框架的许可协议,它规定了软件的使用、...

    struts-config.xml配置详解

    韩顺平视频配套struts-config.xml配置详解.txt

    SSH之Struts1之struts-config.xml常用配置详解(3-21-2008)

    SSH之Struts1之struts-config.xml常用配置详解(3-21-2008)

    struts-1.3.8-all.zip

    使用Struts 1.3.8时,开发者需要配置web.xml和struts-config.xml,定义ActionServlet、Action、ActionForm等元素。此外,还需要编写ActionForm类,实现业务逻辑的Action类,以及使用JSP和Struts标签创建用户界面。 ...

    struts-config.xml配置详解.txt

    这个strut-config配置详解是韩顺平老师指定的 很多同学都看过韩老师的视频或者上过韩老师的课程吧

    struts-config.xml配置

    `struts-config.xml`是Struts框架的核心配置文件,它定义了应用程序的行为、请求映射、数据源等关键元素。这个配置文件位于Web应用的WEB-INF目录下,是开发者与Struts框架交互的主要方式。 **1. 框架组件配置** `...

    struts-config.xml 详解

    `struts-config.xml`是Struts框架的核心配置文件,它定义了应用程序的行为和组件之间的交互。这个文件的主要目的是提供一个集中式的配置点,用于设置数据源、表单bean、异常处理、动作映射等关键元素。以下是每个...

    struts-config1.1.xml

    ### Struts-config1.1.xml 文件解析 #### 文件概述 `struts-config1.1.xml` 是 Apache Struts 框架中一个重要的配置文件,它用于定义应用程序的行为、组件和资源。Struts 是一种基于 Model-View-Controller (MVC) ...

    Struts所有jar包、DTD文件(struts-1.2.9-bin.rar)

    在Struts框架中,DTD文件主要用在配置文件中,如`struts-config.xml`和`web.xml`,它们定义了Struts应用程序的行为和结构。例如,`struts-config_1_2.dtd`定义了`struts-config.xml`的结构,确保开发者正确地编写...

    在struts-config.xml中配置数据源

    在Struts框架中,`struts-config.xml`是核心配置文件,用于定义动作映射、数据源等关键组件。本篇文章将深入探讨如何在`struts-config.xml`中配置数据源,以及这在实际开发中的意义和作用。 数据源(DataSource)是...

    struts-config.xml文件的配置

    Struts-config.xml文件是Struts框架的核心配置文件,它定义了应用程序的行为、数据源、ActionForm Bean等关键元素。以下是关于struts-config.xml文件配置的详细说明: 1. **数据源配置(Data Sources)**: - `...

Global site tag (gtag.js) - Google Analytics