chenyeshen / thymeleaf_test

springBoot+thymeleaf的乐糕糕点网站

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

springBoot+thymeleaf的乐糕糕点网站

License:Apache License 2.0


Languages

Language:JavaScript 33.2%Language:CSS 32.3%Language:HTML 25.0%Language:Java 9.5%