`

struts1的配置文件

阅读更多

1.配置struts1时,需要在web.xml中配置相关信息:

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
      <param-name>debug</param-name>
      <param-value>3</param-value>
    </init-param>
    <init-param>
      <param-name>detail</param-name>
      <param-value>3</param-value>
    </init-param>
    <load-on-startup>0</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
  <!-- 出错页面定义 -->
    <error-page>
        <exception-type>java.lang.Throwable</exception-type>
        <location>/common/500.jsp</location>
    </error-page>
    <error-page>
        <error-code>500</error-code>
        <location>/common/500.jsp</location>
    </error-page>
    <error-page>
        <error-code>404</error-code>
        <location>/common/404.jsp</location>
    </error-page>
    <error-page>
        <error-code>403</error-code>
        <location>/common/403.jsp</location>
    </error-page>  
    
    <resource-ref>  
	    <description>DB2 Connection</description>  
	    <res-ref-name>jdbc/DW</res-ref-name>  
	    <res-type>javax.sql.DataSource</res-type>  
	    <res-auth>Container</res-auth>  
	</resource-ref>
	
<!--	<resource-ref>  -->
<!--	    <description>DB2 Connection</description>  -->
<!--	    <res-ref-name>jdbc/ZJ_DC</res-ref-name>  -->
<!--	    <res-type>javax.sql.DataSource</res-type>  -->
<!--	    <res-auth>Container</res-auth>  -->
<!--	</resource-ref>-->
</web-app>

 

2.此外,struts.xml的配置如下:

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">

<struts-config>

  <data-sources />
  
  	<form-beans> 
 		<form-bean name="UploadWbgyActionForm" type="org.xcx.struts.form.UploadWbgyActionForm"></form-bean>
 		<form-bean name="UploadNbgwActionForm" type="org.xcx.struts.form.UploadNbgwActionForm"></form-bean>
	</form-beans>
  
  <global-exceptions />
  
  <global-forwards >
  		<forward name="error" path="/error.jsp"></forward>
  		<forward name="json" path="/json.jsp"></forward>
  </global-forwards>
  
  <action-mappings >

   <action parameter="method" path="/wbgy" type="org.xcx.struts.action.GWXX_WBGYAction" name="UploadWbgyActionForm">
      <forward name="error" path="/error.jsp"></forward>
      <forward name="insertWbgy" path="/jsp/wbgy/insertWbgy.jsp"></forward>
      <forward name="success" path="/success.jsp"></forward>
      <forward name="WBGYList" path="/jsp/wbgy/AllWbgy.jsp"></forward>
      <forward name="WbgwDetail" path="/jsp/wbgy/WbgyDetail.jsp"></forward>
      <forward name="PreAllWbgy" path="/jsp/wbgy/PreAllWbgy.jsp"></forward>
      <forward name="PreAllWbgyTONGJI" path="/jsp/wbgy/PreAllWbgyTONGJI.jsp"></forward>
   </action>
   
   <action parameter="method" path="/login" type="org.xcx.struts.action.LoginAction">
      <forward name="error" path="/error.jsp"></forward>
      <forward name="indexLoginSuccess" path="/indexLoginSuccess.jsp"></forward>
      <forward name="index" path="/index.jsp"></forward>
      <forward name="login" path="/login.jsp"></forward>
   </action>
   
  </action-mappings>
  <controller processorClass="org.xcx.struts.action.Encoding" maxFileSize="-1"></controller>
  <message-resources parameter="org.xcx.struts.action.ApplicationResources" />
</struts-config>


3.其中的Action继承的是DispatchAction,当访问时,url为contentPath + wbgy.do?method=getAllWBGYXX。以下是action中的一个method对应的方法:

 

public ActionForward getAllWBGYXX(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		
		List<GWXX_WBGY> WBGYList = new ArrayList<GWXX_WBGY>();
		HttpSession session = request.getSession();
		FgyjdaRsQxYh user = (FgyjdaRsQxYh)session.getAttribute("user");
		int qx = (Integer)session.getAttribute("qx");
		String param ="";
		if(qx==3){//本人
			param =" where LRRZYBM='"+user.getZybm()+"'";
		}else if(qx==6){//本部门
			param =" where LRRBMDM="+user.getBmdm()+" and fydm="+user.getFydm();
		}
		WBGYList = wbgyServer.getAllWBGY(param);	
		if(XXX){
			request.setAttribute("WBGYList", WBGYList);
			return mapping.findForward("WBGYList");
		}else{
			return mapping.findForward("error");
		}
	}

 

4.需要添加相应的方法只需要增加相应的method方法,转发url的name,根据name重新跳转页面:

public ActionForward getAllWBGYXX(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response){
	//业务处理
	return mapping.findForward("xxx");
}

 5.相关跳转的信息在struts.xml中配置。

分享到:
评论

相关推荐

    struts1配置文件定义文件

    struts1配置文件定义文件,约束了struts-config.xml文件中都包含哪些元素

    Struts1配置文件详解_思念_百度空间.png

    Struts1配置文件详解_思念_百度空间.png

    Struts1配置文件标签介绍 - XLay的日志 - 网易博客.mht

    Struts1配置文件标签介绍 - XLay的日志 - 网易博客.mht

    ·Struts2配置文件介绍 超级详细

    ### Struts2配置文件介绍 #### 一、Struts2的核心配置文件 在Struts2框架中,有多个重要的配置文件用于控制应用的行为与结构,其中最核心的是`struts.xml`文件。此外还包括`web.xml`、`struts.properties`、`...

    struts1配置文件中DynaActionForm的使用

    用jsp、action、struts-config.xml配置文件,举例说明了DynaActionForm 在struts1 中的作用。

    struts2配置文件

    在Struts2中,配置文件主要分为两个部分:`struts-default.xml`和用户自定义的配置文件,如`struts.xml`或`struts-config.xml`。这些XML文件定义了Action、结果类型、拦截器和包等元素,从而控制应用程序的行为。 *...

    struts2配置文件详细说明

    1. **配置文件结构**: Struts2的配置通常存储在一个名为`struts.xml`的XML文件中。这个文件遵循特定的DTD(文档类型定义),如`struts-2.0.dtd`,确保其结构的正确性。 2. **常量配置**: `&lt;constant&gt;`元素用于...

    struts核心配置文件详解

    Struts应用的配置 多应用模块的配置 Struts配置文件 多应用模块的划分有助于应用的并行开发,提高效率

    struts配置的文件 连接池 mysql等配置文件

    1. **Struts2核心配置文件**:主要由`struts.xml`构成,它是整个Struts2应用的主配置文件。在这个文件中,你可以定义Action类、Action的映射、结果类型、拦截器栈等。例如: ```xml ...

    struts2配置文件加载顺序

    1. **struts-default.xml**:这是Struts2的核心配置文件,位于`struts2-core.jar`库的`/org/apache/struts2/defaults`包内。它包含了框架的基本设置,如拦截器栈、默认Action配置等。 2. **struts-plugin.xml**:这...

    Struts2 配置文件

    配置SSH框架时关于Struts2的配置文件

    struts2 配置文件

    ### Struts2 配置文件详解 #### 一、引言 在Struts2框架的应用开发过程中,配置文件起到了至关重要的作用。Struts2主要依赖于两种基于XML的配置文件:`web.xml` 和 `struts-config.xml`(通常命名为 `struts.xml`)...

    知识共享-struts1.2配置文件详解(雷惊风).

    - 这是Struts配置文件的根元素,其配置类为org.apache.struts.config.ModuleConfig。该元素下有8个子元素,每个都扮演着不同的角色,如数据源配置、全局异常处理、全局转发等。 #### 2. **Data-Sources元素** - `...

    struts2配置文件传值中文乱码

    本文将围绕“Struts2配置文件传值中文乱码”这一主题,深入探讨其成因、解决方案以及相关的配置细节,旨在帮助开发者有效解决中文乱码问题,提升用户体验。 ### Struts2框架简介 Struts2是Apache组织下的一个开源...

    STRUTS配置文件

    struts配置文件,用于创建springmvc与struts工程的配置文件,集合加数组获得后台的空间空间空间 空间 空间空了

    struts2配置文件改变位置问题

    在Struts2中,`struts.xml`文件是核心配置文件,它定义了动作、结果、拦截器等关键组件。在默认情况下,`struts.xml`通常位于`src/main/resources`或在Web应用中是`WEB-INF/classes`目录下。 在描述的问题中,...

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

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

    struts1多模块多配置文件

    ### Struts1多模块多配置文件的开发流程详解 #### 一、引言 在大型项目的开发过程中,为了更好地组织代码结构,提高系统的可维护性和扩展性,通常会采用多模块的设计模式。对于使用Struts1框架进行开发的项目而言,...

Global site tag (gtag.js) - Google Analytics