欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

SpringBoot thymeleaf eclipse热部署方案操作步骤

时间:2021-02-19 15:19:37|栏目:JAVA代码|点击:

网上找了好多的springboot热部署方案,也尝试了好几种方法,下面是我的成功方案跟大家分享

操作步骤

1.pom中添加热部署依赖

 <dependency>
   <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-devtools</artifactId>
       <optional>true</optional>
     </dependency>
    <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
 </dependency>

2.添加插件

<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
  <fork>true</fork>
</configuration>

3.controller中添加后台跳转

 @RequestMapping(value = "/index",method = RequestMethod.GET)
  public String hello(Model model) {
    model.addAttribute("name", "Dear");
    return "index";
  }

4.index.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>神州泰岳征信系统</title>
</head>
<body>helloword!
<p th:text="'Hello!, ' + ${name} + '!'" >3333</p>
测试热部署1111111
</body>
</html>

5. thymeleaf:

    mode: HTML5
    encoding: UTF-8
    content-type: text/html
   #开发时关闭缓存,不然没法看到实时页面
    cache: false
    cache-period: 0
  template:
      cache: false

6.开启自动编译功能

7.进行测试

总结

上一篇:shiro与spring集成基础Hello案例详解

栏    目:JAVA代码

下一篇:Springboot整合MongoDB的Docker开发教程全解

本文标题:SpringBoot thymeleaf eclipse热部署方案操作步骤

本文地址:http://www.codeinn.net/misctech/65950.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有