我使用「spring tool suite」創建了spring引導啓動項目。當我運行項目時,index.jsp頁面沒有加載。但index.html可以很好地加載。spring引導項目運行問題
我的文件夾結構如下
我家控制器
package com.programmingfree.springservice;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HomeController {
@RequestMapping("/")
public String home() {
return "index";
}
}
我如何運行index.jsp
您是否檢出了有關使用JSP和可執行JAR的限制的文檔? https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html#boot-features-jsp-limitations。還有一個示例可用:https://github.com/spring-projects/spring-boot/tree/v1.5.9.RELEASE/spring-boot-samples/spring-boot-sample-web-jsp – dunni