小编典典

Spring-boot会自动导入applicationContext.xml吗?

spring-boot

我正在使用,spring-boot并且想自动导入src/main/resources/applicationContext.xml文件。

到目前为止,仅当我明确告诉spring导入它时,它才有效:

@EnableAutoConfiguration
@Configuration
@ImportResource({"classpath*:applicationContext.xml"})

但是spring-boot有很多默认值,也许有人知道app.xml文件的“默认”名称,所以默认情况下spring-boot会选择它。


阅读 479

收藏
2020-05-30

共1个答案

小编典典

默认情况下,没有基于XML的名称或位置导入XML配置的功能。

查看文档的这一部分。

2020-05-30