我有这个项目结构:
我可以@ContextConfiguration(locations = { "what I must write here?" })
为成功导入写什么?
我有这个项目结构:
我可以@ContextConfiguration(locations = { "what I must write here?" })
为成功导入写什么?
@ContextConfiguration("file:src/main/webapp/WEB-INF/spring/spring_config.xml")
您还可以将文件移动到资源文件夹:
您可以将 Spring 配置文件存储在类路径中(例如,src/main/resources),然后通过类路径引用它们。
@ContextConfiguration("classpath:/WEB-INF/spring/spring_config.xml")
首先,您需要添加webapp
为源文件夹,以便WEB-INF
在类路径的顶部可用(因为它将在部署的应用程序中)。然后你可以使用/WEB-INF/spring/security_config.xml
.
或者,有些人更喜欢将他们的 XML 文件放入其中src/main/resources
。