spring-boot+thymeleaf的乐糕糕点网站
- spring boot
- thymeleaf
- mybatis
- mysql
- druid 做sql监控
- jquery+datables后台分页
- spring boot 热部署
- redis跟mybatis结合做缓存
pom
<!-- 热部署模块 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
<scope>true</scope>
</dependency>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
</configuration>
</plugin>