就像单机Java应用程序一样,和数据库连接需要DataSource,然后生成到数据库的Connection再进行数据库操作
SpringBoot和原生的JDBC
先看SpringBoot项目源码
从上面看的出,SpringBoot只需要一个DataSource就可以完成数据库操作,JdbcTemplate只要封装数据库操作,已经由SpringBoot帮我们生成
项目结构
pom.xml加入了spring-boot-jdbc,mysql依赖
4.0.0 test.demo springboot 0.0.1-SNAPSHOT jar springboot org.springframework.boot spring-boot-starter-parent 1.3.0.RELEASE UTF-8 org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-jdbc mysql mysql-connector-java
application.yml(里面就只有一个配置的用户信息)
user: properties: name: zzzz age: 18
源码下载地址
https://github.com/tangzhe7/springBootDemo
将数据库连接信息写进配置文件
修改application.yml就可以
user: properties: name: zzzz age: 18spring: datasource: url: jdbc:mysql://localhost:3306/boot username: root password: 123456
源码下载
https://github.com/tangzhe7/springBootDemo/tree/master/springboot-jdbc-configuration-datasource
posted on 2016-03-11 16:11 阅读( ...) 评论( ...)