代码拉取完成,页面将自动刷新
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.cbitedu</groupId>
<artifactId>study-springboot</artifactId>
<version>1.0.0</version>
<name>study-springboot</name>
<description>study-springboot</description>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<springboot.druid.starter.version>1.2.23</springboot.druid.starter.version>
</properties>
<!--多模块构建-->
<modules>
<!--maven标准工程项目-->
<module>study-springboot-chapter00</module>
<!--属性文件的使用案例-->
<module>study-springboot-chapter01</module>
<!--yml和yaml文件的使用案例-->
<!-- <module>study-springboot-yml</module>-->
<!--mybatis集成-->
<module>study-springboot-chapter02</module>
<!--mybatis plus集成-->
<module>study-springboot-chapter03</module>
<!--Spring jdbcTemplate集成-->
<module>study-springboot-chapter04</module>
<!--springboot日志框架-->
<module>study-springboot-chapter05</module>
<!--多数据源集成-->
<module>study-springboot-chapter06</module>
<!--springboot事务-->
<module>study-springboot-chapter07</module>
<!--springboot ehcache缓存-->
<module>study-springboot-chapter08</module>
<!--springboot Redis缓存-->
<module>study-springboot-chapter09</module>
<!--springboot Thymeleaf-->
<module>study-springboot-chapter10</module>
<!--springboot echarts-->
<module>study-springboot-chapter11</module>
<!--springboot echarts疫情项目-->
<module>study-springboot-chapter12</module>
<!--springboot upload文件上传案例-->
<!-- <module>study-springboot-chapter13</module>-->
<!-- <!–springboot security安全框架–>-->
<!-- <module>study-springboot-chapter14</module>-->
<!-- <!–springboot apache shiro安全框架–>-->
<!-- <module>study-springboot-chapter15</module>-->
<!-- <!–springboot jwt 跨域解决方案–>-->
<!-- <module>study-springboot-chapter16</module>-->
<!-- <!–springboot Restful API–>-->
<!-- <module>study-springboot-chapter17</module>-->
<!-- <!–springboot swagger3 API–>-->
<!-- <module>study-springboot-chapter18</module>-->
<!-- <!–springboot Restful 安全解决方案–>-->
<!-- <module>study-springboot-chapter19</module>-->
<!-- <!–springboot task 任务调度–>-->
<!-- <module>study-springboot-chapter21</module>-->
</modules>
<dependencies>
<!-- 实现对数据库连接池的自动化配置 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<!--导入配置文件处理器,以后编写配置就有提示了-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<addResources>true</addResources>
</configuration>
</plugin>
</plugins>
</build>
<!-- 配置JDK版本 -->
<profiles>
<profile>
<id>jdk18</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。