springboot页面跳转问题

springboot页面跳转问题

一、静态页面
** 它默认静态页面放在static目录下面,动态页面放在templates目录下面**
1.访问static下的know-add.html

springboot页面跳转问题_第1张图片

<button class="layui-btn" onclick="xadmin.open('添加知识','./know-add.html',800,600)">

这是静态跳转,必须把页面放在static下面

二、动态页面
在controller中访问
1.访问templates下面的know-list.html页面,访问路径为localhost:8080/knowlist

@Controller
public class KnowController {

    //这里设置路径
    @GetMapping("/knowlist")
    public String knowList(){
    	//这是页面名称
        return "know-list";
    }

你可能感兴趣的:(springboot)