我正在尝试使用JSP模板配置Spring Boot应用程序。我遇到了一些问题,所以我将我的应用程序与Spring Boot的示例jsp应用程序进行比较:https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-web-jsp
令我惊讶的是,我对样本有同样的问题。我将尝试描述我遵循的步骤:
在应用程序的日志中,我看到可用的请求映射:/,/ foo和/ error
我做这个请求curl -XGET localhost:8080 /我得到了这个答案:
{"timestamp":1471504557212,"status":404,"error":"Not Found","message":"No message available","path":"/"}
我期望的结果是welcome.jsp的html。当Spring Mvc尝试渲染welcome.jsp时,似乎存在问题。
知道我做错了吗?