只是尝试使用 Spring 3.2 测试框架的新特性,以便在 Web 层进行真正的集成测试。在 Spring 3.2 中使用“SpringJUnit4ClassRunner”触发测试时遇到问题,因为模板引擎抱怨无法解析模板名称:
2013-06-28 09:29:18,372 ERROR TemplateEngine - [THYMELEAF][main] Exception processing template "mobile/index": Error resolving template "mobile/index", template might not exist or might not be accessible by any of the configured Template Resolvers
当然,引擎正在搜索/WEB-INF/views/mobile/index.html周围的资源,在正常执行模式下是正确的,但在类路径中沿着测试执行环境不存在:*classpath (src/test/resources) 在基于 Maven 的项目中 * /WEB-INF/views/mobile/index.html
有没有办法让引擎从“真实路径”中获取资源,以免在测试类路径中维护每个 html 视图的副本?
提前致谢,