Commit d7d33e13 by stylefeng

mysql和fastjson加入通用依赖

parent 367de2a9
...@@ -82,11 +82,6 @@ ...@@ -82,11 +82,6 @@
</exclusions> </exclusions>
</dependency> </dependency>
<!--其他依赖-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- 需要分布式session的话需要放开注释 <!-- 需要分布式session的话需要放开注释
<dependency> <dependency>
<groupId>org.springframework.session</groupId> <groupId>org.springframework.session</groupId>
...@@ -94,10 +89,6 @@ ...@@ -94,10 +89,6 @@
</dependency> </dependency>
--> -->
<dependency> <dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId> <groupId>commons-io</groupId>
<artifactId>commons-io</artifactId> <artifactId>commons-io</artifactId>
</dependency> </dependency>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
</dependency> </dependency>
<!--数据库操作--> <!--通用依赖-->
<dependency> <dependency>
<groupId>com.baomidou</groupId> <groupId>com.baomidou</groupId>
<artifactId>mybatisplus-spring-boot-starter</artifactId> <artifactId>mybatisplus-spring-boot-starter</artifactId>
...@@ -31,6 +31,10 @@ ...@@ -31,6 +31,10 @@
<artifactId>mybatis-plus</artifactId> <artifactId>mybatis-plus</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId> <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency> </dependency>
...@@ -38,6 +42,10 @@ ...@@ -38,6 +42,10 @@
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
<artifactId>druid</artifactId> <artifactId>druid</artifactId>
</dependency> </dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<!--web--> <!--web-->
<dependency> <dependency>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment