Thymeleasf文档:https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html
Thymeleaf集成了但是输出字符串,无法定位到页面问题。
这个问题一般是应为controller类型写错导致的。在返回接口的时候使用RestController,需要返回的页面的时候使用Controller
/**
* 首页
*/
@Controller
public class IndexController {
@GetMapping(value = {"/","/login"})
public String main(){
return "login";
}
}
网友评论