Spring 引导上下文路径在测试中没有 return index.html

Spring Boot context-path doesn't return index.html in tests

我想测试 GET "/" returns index.html(在构建中就是这种情况)但是当我在集成测试中尝试这样做时,我得到 404 NOT FOUND。这是我的测试方式:

mvc.perform(get("/"));

application.properties:

server.servlet.context-path=/

同样,这在 browser/REST 客户端上按预期工作。

谢谢

虽然这对我来说毫无意义,但问题是接受类型 - application/json。将其更改为 / 并且有效