Spring Boot Jsp示例应用程序出错

时间:2016-08-18 07:31:51

标签: spring jsp spring-boot

我正在尝试使用JSP模板配置Spring Boot应用程序。我遇到了一些问题,所以我将我的应用程序与Spring Boot的示例jsp应用程序进行比较:https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-web-jsp

令我惊讶的是,我对样本有同样的问题。我将尝试描述我遵循的步骤:

  • 下载spring-boot:git clone https://github.com/spring-projects/spring-boot
  • 转到稳定版本:git checkout v1.4.0.RELEASE
  • 转到示例应用程序:cd spring-boot / spring-boot-samples / spring-boot-sample-web-jsp /
  • 运行应用程序:mvn spring-boot:run

在应用程序的日志中,我看到可用的请求映射:/,/ 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时,似乎存在问题。

知道我做错了吗?

0 个答案:

没有答案