Spring JdbcTemplate 入门

This commit is contained in:
YunaiV
2020-06-28 06:58:52 +08:00
parent 1f46d8ed2a
commit abc43e5508
16 changed files with 11 additions and 11 deletions

View File

@@ -70,7 +70,7 @@
* [《芋道 Spring Boot 数据库连接池入门》](http://www.iocoder.cn/Spring-Boot/datasource-pool/?github) 对应 [lab-19](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-19)
* [《芋道 Spring Boot MyBatis 入门》](http://www.iocoder.cn/Spring-Boot/MyBatis/?github) 对应 [lab-12-mybatis](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-12-mybatis)
* [《芋道 Spring Boot JPA 入门》](http://www.iocoder.cn/Spring-Boot/JPA/?github) 对应 [lab-13](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-13)
* [《芋道 Spring Boot JPA 入门》](http://www.iocoder.cn/Spring-Boot/JPA/?github) 对应 [lab-13-spring-data-jpa](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-13-spring-data-jpa)
* [《芋道 Spring Boot JdbcTemplate 入门》](http://www.iocoder.cn/Spring-Boot/JdbcTemplate/?github) 对应 [lab-14](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-14)
* [《芋道 Spring Boot 多数据源(读写分离)入门》](http://www.iocoder.cn/Spring-Boot/dynamic-datasource/?github) 对应 [lab-17](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-17)
* [《芋道 Spring Boot 分库分表入门》](http://www.iocoder.cn/Spring-Boot/sharding-datasource/?github) 对应 [lab-18](https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-18)

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-01</artifactId>
<artifactId>lab-02-spring-security</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-01-springsecurity-demo</module>

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-02</artifactId>
<artifactId>lab-02-spring-security-oauth</artifactId>
<packaging>pom</packaging>
<modules>
<module>authorization-code-server</module>
@@ -22,4 +22,4 @@
</modules>
</project>
</project>

View File

@@ -10,7 +10,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-03</artifactId>
<artifactId>lab-03-kafka</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-03-kafka-native</module>

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-04</artifactId>
<artifactId>lab-04-rabbitmq</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-04-rabbitmq-native</module>

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-11</artifactId>
<artifactId>lab-11-spring-data-redis</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-07-spring-data-redis-with-jedis</module>

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-13</artifactId>
<artifactId>lab-13-spring-data-jpa</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-13-jpa</module>

View File

@@ -9,7 +9,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>lab-14</artifactId>
<artifactId>lab-14-spring-jdbc-template</artifactId>
<packaging>pom</packaging>
<modules>
<module>lab-14-jdbctemplate</module>

View File

@@ -23,8 +23,8 @@
<!-- <module>lab-10</module>-->
<!-- <module>lab-11-spring-data-redis</module>-->
<!-- <module>lab-12-mybatis</module>-->
<module>lab-13-spring-data-jpa</module>
<!-- <module>lab-14</module>-->
<!-- <module>lab-13-spring-data-jpa</module>-->
<module>lab-14-spring-jdbc-template</module>
<!-- <module>lab-15</module>-->
<!-- <module>lab-16</module>-->
<!-- <module>lab-17</module>-->