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

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

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

@EnableAutoConfiguration

@Configuration

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

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

回答:

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

查看文档的这一部分。

以上是 Spring-boot会自动导入applicationContext.xml吗? 的全部内容, 来源链接: utcz.com/qa/407986.html

回到顶部