这个在jsp中很容易实现,但是springBoot不推荐使用jsp,建议使用thymeleaf,下面是在thymeleaf中引入界面的方法 1.修改配置文件 spring: mvc: static-path-pattern: /static/** thymeleaf: prefix: classpath: /templates/ 在springBoot中,静态资源(如js,css,图片,静态html)都放在static当中,动态资源(如html)放在templates中. 这是我的目录结构 现在…