-
在Struts1中如何自己加载struts_config.xml?20
为了实现模块化开发,struts_config.xml想放在各个plugin代码之下,如何扩展ActionServlet来读入这些分散的配置文件?2012年6月22日 11:33
4个答案 按时间排序 按投票排序
-
采纳的答案
如果看过struts的源码,了解struts的初期加载过程的话,就该知道在struts中可以覆写ActionServlet的initModuleConfig方法来实现自己的加载封装。
举例说一下:
假如你的模块都放在WEB-INF\plugin之下:- WEB-INF\plugin\cms\
- WEB-INF\plugin\blog\
- WEB-INF\plugin\member\
- WEB-INF\plugin\space\
- ...
而struts_config.xml文件就在每个plugin的根目录下:
如:WEB-INF\plugin\cms\struts_config.xml
那么就可以如下扩展ActionServlet来实现自定义加载:public class BaseServlet extends ActionServlet { protected ModuleConfig initModuleConfig(String prefix, String paths) throws ServletException { // Parse the configuration for this module ModuleConfigFactory factoryObject = ModuleConfigFactory.createFactory(); ModuleConfig config = factoryObject.createModuleConfig(prefix); // Configure the Digester instance we will use Digester digester = initConfigDigester(); String path = getServletContext().getRealPath("/"); String pluginPath = path + "WEB-INF" + File.separator + "plugin"; try { File[] files = new File(pluginPath).listFiles(); for (int intCnt = 0; intCnt < files.length; intCnt++) { if (files[intCnt].isDirectory()) { digester.push(config); String configPath = files[intCnt].getAbsolutePath() + File.separator + "struts_config.xml"; if(new File(configPath).exists()) { String pp = configPath.substring(getServletContext().getRealPath("/").length() - 1).replace('\\', '/');; System.out.println(pp); parseModuleConfigFile(digester, getServletContext().getResource(pp)); } } } } catch (MalformedURLException e) { throw new UnavailableException(e.getMessage()); } getServletContext().setAttribute( Globals.MODULE_KEY + config.getPrefix(), config); return config; } }
2012年6月26日 09:26
-
中间用,分隔
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml,/WEB-INF/struts-config-system.xml,。。。。。。。</param-value> </init-param>
2012年6月25日 17:08
-
或者在web.xml里config文件配置多个xml试试
<init-param>
<param-name>config</param-name> <!—config指明Struts应用程序的配置文件相对位置-->
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config-registration.xml</param-value>
</init-param>2012年6月22日 11:45
-
其实只要在主struts_config.xml里把其他的struts的xml include进来就好了
在struts_config.xml里加上
<include file="XXX/xxx/struts-xxx.xml"></include>
2012年6月22日 11:41
相关推荐
Struts框架的核心配置文件`struts-config.xml`是整个应用的关键组成部分之一,它定义了应用程序中各个组件(如Action、FormBean等)的行为与交互方式。本文将详细介绍`struits-config.xml`中的关键配置项,并解释其...
struts-config.xml struts标准配置文件 struts-config
而在Struts框架中,`struts-config.xml`文件扮演着至关重要的角色,它是Struts框架的核心配置文件,用于配置应用程序的各种行为和组件。本文将对`struts-config.xml`中的关键元素进行详细解析,并结合实际示例来帮助...
`struts-config.xml`是Struts框架的核心配置文件,它定义了应用的各个组件及其交互方式。下面将详细介绍这个配置文件的主要元素和子元素。 ### 主要元素 1. **`<data-sources>`**: 这个元素用于配置数据源,通常...
例如,在Struts 1.x中,`struts-config.xml`文件的DTD如下所示: ```xml <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" ...
通过在struts-config.xml中配置plug-in元素,可以指定插件类的全路径,并设置插件初始化时使用的参数。 了解和掌握struts-config.xml中的8个主要配置元素的使用方法,是进行Struts框架应用开发的基础。通过合理配置...
在 Struts-config.xml 文件中,数据源配置是通过 `<data-sources>` 元素实现的,该元素可以包含多个 `<data-source>` 子元素,每个 `<data-source>` 元素可以配置一个数据源。数据源配置中可以设置 driverClass、url...
在 Struts 应用程序中,`struts-config.xml` 文件是核心配置文件,它定义了应用的行为、控制器(Actions)、数据源(Form Beans)以及视图(JSP 页面)之间的关系。本文将深入探讨 `struts-config.xml` 的主要元素和...
韩顺平视频配套struts-config.xml配置详解.txt
SSH之Struts1之struts-config.xml常用配置详解(3-21-2008)
这个strut-config配置详解是韩顺平老师指定的 很多同学都看过韩老师的视频或者上过韩老师的课程吧
- 在实际开发中,通常使用其他框架如Hibernate或Spring来管理数据源,而不是直接在`struts-config.xml`中配置。 ##### 2. form-beans `form-beans`元素用于配置表单相关的JavaBean对象,即FormBeans。每个FormBean...
在给定的压缩包“struts2_1_8_1config.zip”中,我们聚焦于Struts2的配置与测试环境,这个环境是基于MyEclipse 6.0集成开发环境、Tomcat 6.0应用服务器、Java 8(jdk1.8)以及Java EE 5.0标准。下面我们将深入探讨...
4. **配置文件**:包括struts-config.xml或struts2的struts.xml,这是Struts的核心配置文件,定义了Action、ActionForm、拦截器和结果视图的映射。还有可能包含其他如web.xml(Web应用部署描述符)等配置文件。 5. ...
4. **ValidatorPlugIn**:在`struts-config.xml`中配置的插件,它负责启动Validator框架,并将验证规则应用于ActionForm。 5. **validation.xml** 和 **validator-rules.xml**:这两个文件分别定义了具体的验证规则...
具体到操作流程,当用户发起一个请求时,Struts1框架接收到请求,根据struts-config.xml中的配置找到对应的Action,然后Action通过Spring的依赖注入获取到Ibatis的DAO,执行相应的SQL操作。Ibatis根据xml配置文件中...
Struts框架支持基于XML的表单验证,这允许在`struts-config.xml`中定义验证规则,或者在ActionForm类中实现自定义的校验逻辑。 ```xml <validator name="required" path="/WEB-INF/validators/required.xml"/> `...
在这个"Struts1.x_Project.zip"压缩包中,我们可以看到一个使用Struts1.x框架构建的简易订餐系统的实例。这个项目将帮助我们深入理解MVC架构以及Struts1.x的核心特性。 **MVC模式详解:** MVC模式是软件设计中的一...