/thymeleaf_test

springBoot+thymeleaf的乐糕糕点网站

Primary LanguageJavaScriptApache License 2.0Apache-2.0

thymeleaf_test

spring-boot+thymeleaf的乐糕糕点网站

所用到的技术

  • spring boot
  • thymeleaf
  • mybatis
  • mysql
  • druid 做sql监控
  • jquery+datables后台分页
  • spring boot 热部署
  • redis跟mybatis结合做缓存

spring boot 热部署配置

   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>

使用阿里的druid效果展示

image