Spring 使用 @ImportResource 导入 XML 配置文件
🏷️ Spring
本来使用下面的方式在程序启动后加载 xml 文件,但发现在 SpringApplication.run
执行程序其实已经开始执行了。也就是说在后面的 xml 加载完成之前,程序中如果使用了 xml 中配置的 bean,则会由于 bean 不存在而报错。
java
@SpringBootApplication
@ComponentScan
public static void main(String[] args) throws InterruptedException {
SpringApplication.run(Application.class, args);
ctx = new FileSystemXmlApplicationContext("/applicationContext_ES.xml");
ctx.registerShutdownHook();
ctx.start();
}
后来发现 @ImportResource
标注可以加载配置文件。
java
@SpringBootApplication
@ComponentScan
@ImportResource("file:///Soa/mqservices/applicationContext.xml")
public static void main(String[] args) throws InterruptedException {
SpringApplication.run(Application.class, args);
}
@ImportResource
标注也可以使用 Resource
目录中的配置文件。
java
@ImportResource("classpath:applicationContext.xml")
第一种加载方法中 FileSystemXmlApplicationContext
方法可以加载文件系统中的文件,而且是相对路径。
第二种方法中 file:///
代表的也是文件系统。虽然没有盘符,但是是绝对路径 ( windows 系统中是当前盘符的根目录开始算)。
第三种方法中 classpath:
代表的是从 Jar 包的资源目录中查找该文件。
因为第一种方法有问题,而且因为项目发布需要配置文件放在了 jar 包的外面,所以采用了第二种方法。如果 @ImportResource
标注能支持相对路径就完美了。
参考:http://docs.spring.io/spring/docs/current/spring-framework-reference/html/resources.html