美文网首页
Thymeleaf集成问题收集

Thymeleaf集成问题收集

作者: 放羊娃华振 | 来源:发表于2021-12-19 21:06 被阅读0次

    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";
        }
    }
    
    

    参考页面:https://www.cnblogs.com/li-shuaiqi/p/12527712.html

    相关文章

      网友评论

          本文标题:Thymeleaf集成问题收集

          本文链接:https://www.haomeiwen.com/subject/drllfrtx.html