SpringSecutiry整合thymeleaf模板

如何构建SpringSecutiry框架,这里就不详细赘述了,直接速通。

目录

 thymeleaf教程(转载)

 所需的依赖

Thymeleaf模板文件

具体的项目搭建

资源展览图

 接口展示

Thymeleaf模板内容展示


 thymeleaf教程(转载)

Thymeleaf 教程 | 範宗雲 (fanlychie.github.io)

 所需的依赖

        
        
            org.springframework.boot
            spring-boot-starter-security
        

        
        
            org.springframework.boot
            spring-boot-starter-thymeleaf
        

        
        
            org.thymeleaf.extras
            thymeleaf-extras-springsecurity5
        

Thymeleaf模板文件




    Index Page
    


    

Welcome to BeiJing!

具体的项目搭建

资源展览图

SpringSecutiry整合thymeleaf模板_第1张图片

 接口展示

package com.ma.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

/**
 * @author Mtz
 * @version 1.0
 * @2023/6/1810:54
 * @function
 * @comment
 */
@Controller
public class PathController {
    @RequestMapping("/test")
    public String test(Model model){
        model.addAttribute("name","张三");
        model.addAttribute("age","15");
        return "/page/test";
    }
}

Thymeleaf模板内容展示





    SpringBoot模版渲染
    



1

2

展示效果

SpringSecutiry整合thymeleaf模板_第2张图片

你可能感兴趣的:(项目工具类,java,开发语言)