我是Spring Framework的新手。試圖製作一個基於Java的Spring MVC項目。這是我的主應用程序類Spring App不能使用JSP
@SpringBootApplication
@ComponentScan
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
@Controller
public class HelloController {
@RequestMapping("/")
public String hello(){
return "hello";
}
}
當我運行的項目,我得到的錯誤
There was an unexpected error (type=Not Found, status=404).
No message available
爲什麼春天不能顯示JSP文件?
下載一個工作項目和工作過這一點。從零開始設置彈簧項目時,一百萬件事情可能會出錯 – Snickers3192
我可以在哪裏下載它? –
他們的網站怎麼樣???!@ ??? https://spring.io/guides/gs/serving-web-content/ – Snickers3192