我想創建spring引導web應用程序。Spring引導映射靜態html
我有兩個靜態html文件:one.html,two.html。
我想將它們映射如下
localhost:8080/one
localhost:8080/two
不使用模板引擎(Thymeleaf)。
如何做到這一點?我嘗試了很多方法來做到這一點,但我有404錯誤或500錯誤(循環視圖路徑[one.html]:將分派回當前的處理程序URL)。
OneController.java是:
@Controller
public class OneController {
@RequestMapping("/one")
public String one() {
return "static/one.html";
}
}
項目結構是
哇,你真棒,多數民衆贊成在工作。謝謝! – megasoch
這是解決這個問題的最好方法 –