【Java】spring boot项目简单集成前端页面

  • 建好Spring boot项目(配置好application.properties或application.yml)
  • 在pom.xml中添加模板引擎
    <!--模板引擎-->
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
  • 添加文本页面资源
    • 在src\main\resources\templates中添加html文件【需要做静态资源映射,类似MVC,SpringBoot启动后默认在静态资源目录下寻找index.html,如果没有找到;就会去resource/templates目录下寻找index.html(使用Thymeleaf模板)】
    • 在src\main\resources\resources中放添加html、js、css、图片、字体等静态资源

      【Java】spring boot项目简单集成前端页面

  • 运行
上一篇:ICPC Templates For WLF


下一篇:python测试开发django-67.templates模板变量取值