新增User的增删改查示例(基于jpa实现)
diff --git a/samples/user/pom.xml b/samples/user/pom.xml
index bcd22ec..23bbb2e 100644
--- a/samples/user/pom.xml
+++ b/samples/user/pom.xml
@@ -30,6 +30,26 @@
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+
<dependency>
<groupId>com.supwisdom.infras</groupId>
@@ -46,12 +66,12 @@
<artifactId>infras-i18n</artifactId>
</dependency>
- <!--
<dependency>
<groupId>com.supwisdom.infras</groupId>
<artifactId>infras-lang</artifactId>
</dependency>
+ <!--
<dependency>
<groupId>com.supwisdom.infras</groupId>
<artifactId>infras-pinyin</artifactId>