是否可以从文件中加载配置的自定义部分并从类路径中自动加载配置的其他部分,放置在 jar 中?
我在 java 上使用 spring 2.5.6 框架编写了命令行应用程序。应用程序的配置由两部分组成:
- bigApplicationContext.xml
导入 bigApplicationContext.xml 的 customConfig.xml
bigApplicationContext 引用了一些来自 customConfig 的 bean。
我在 jar 中放置了 bigApplicationContext 和默认的 customConfig。ClassPathXmlApplicationContext 加载的配置。没关系
当我想为我的应用程序--pathToCustomConfig 提供额外的命令行选项时,麻烦就来了
我想从文件中加载配置的自定义部分,并从 bigApplicationContext 中自动加载配置的其他部分,放置在 jar 中。
是否可以?我现在有
配置问题:无法从相对位置导入 bean 定义