我有这个项目结构:



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

最佳答案

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


Location of spring-context.xml

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


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


@ContextConfiguration("classpath:/WEB-INF/spring/spring_config.xml")

10-06 08:56