0

我有这个项目结构:

在此处输入图像描述

我可以@ContextConfiguration(locations = { "what I must write here?" }) 为成功导入写什么?

4

2 回答 2

2
@ContextConfiguration("file:src/main/webapp/WEB-INF/spring/spring_config.xml")

请参阅spring-context.xml 的位置

您还可以将文件移动到资源文件夹:

您可以将 Spring 配置文件存储在类路径中(例如,src/main/resources),然后通过类路径引用它们。

@ContextConfiguration("classpath:/WEB-INF/spring/spring_config.xml")
于 2013-10-03T16:16:37.783 回答
1

首先,您需要添加webapp为源文件夹,以便WEB-INF在类路径的顶部可用(因为它将在部署的应用程序中)。然后你可以使用/WEB-INF/spring/security_config.xml.

或者,有些人更喜欢将他们的 XML 文件放入其中src/main/resources

于 2013-10-03T16:15:10.460 回答