SpringBoot
1 连接数据库
Spring框架为连接数据库提供了许多的帮助,从JDBC连接到使用JdbcTemplate完成元素之间的映射技术。例如Hibernate、Spring Data提供了更高级别的功能,创建Repository的实现,用接口中的方法和xml文件具体SQL的映射,使得用java调用Sql更加简便。
1.1 配置DataSource
Java的javax.sql.DataSource
一个接口,可以获取数据库的Connection。是标准化的,取得连接的一种方式。当然在配置DataSource之前需要我们导入所需要的jar包
compile('org.springframework.boot:spring-boot-starter-jdbc')
compile 'mysql:mysql-connector-java:8.0.11'
1.1.1 默认配置
这个方法非常的简单,只需要在application.yml中配置一些元素即可
spring:
datasource:
url: jdbc:mysql://localhost:3306/xmall
username: root
password: *******
driver-class-name: com.mysql.jdbc.Driver
在SpringBoot中可以不用详细的指定driver-class-name,因为SpringBoot能够在所写的url中推断出来所用的
然后在测试方法类中查看是否已经配置完成,只要打印出来了配置信息,那么既表示已经将配置文件中的元素配置到了DataSource中。
@RunWith(SpringRunner.class)
@SpringBootTest
public class FirstSpringBootApplicationTests {
@Autowired
private DataSourceProperties dataSourceProperties;
@Autowired
ApplicationContext applicationContext;
@Test
public void contextLoads() {
// 获取配置的数据源
DataSource dataSource = applicationContext.getBean(DataSource.class);
// 查看配置数据源信息
System.out.println(dataSource);
System.out.println(dataSource.getClass().getName());
System.out.println(dataSourceProperties.getUsername());
}
}
1.1.2 自定义配置数据源
在application.yml中配置如下
buxuewushu:
datasource:
url: jdbc:mysql://localhost:3306/xmall
username: root
password: *******
driver-class-name: com.mysql.jdbc.Driver
然后在配置文件中写如下信息
/**
* @program: FirstSpringBoot
* @description:
* @author: hu_pf@suixingpay.com
* @create: 2018-07-30 16:37
**/
@Configuration
public class DataConfigure {
@Bean(name = "myDataSource")
@Qualifier("myDataSource")
@ConfigurationProperties("buxuewushu.datasource")
public DataSource dateSource(){
return DataSourceBuilder.create().build();
}
}
然后在测试类中测试如下
@Resource(name = "myDataSource")
private DataSource myDataSource;
@Autowired
ApplicationContext applicationContext;
@Test
public void contextLoads() {
//执行SQL,输出查到的数据
JdbcTemplate jdbcTemplate = new JdbcTemplate(myDataSource);
List<?> resultList = jdbcTemplate.queryForList("select * from tb_address");
System.out.println("===>>>>>>>>>>>" + resultList);
}
发现能够打印出来Mysql数据库中的信息,即配置的数据源已经生效。
1.1.3 配置多数据源
如果需要配置多数据源的话,那么可以在使用上一小节的自定义配置来进行配置两个数据源。但是在配置文件中配置两个数据源的时候要配置一个主数据源,即在主数据源上加上@Primary注解。因为SpringBoot的自动配置功能需要有一个指定的数据源进行加载。
只需要在资源文件中配置不同的数据源,用名字进行区分开来,例如如下:
buxuewushu:
datasource:
first:
url: jdbc:mysql://localhost:3306/first
username: root
password: hpy911213
driver-class-name: com.mysql.jdbc.Driver
buxuewushu:
datasource:
secend:
url: jdbc:mysql://localhost:3306/secend
username: root
password: hpy911213
driver-class-name: com.mysql.jdbc.Driver
然后在java的配置文件中,加载配置时如下写即可:
@Bean
@ConfigurationProperties("buxuewushu.datasource.first")
@Primary
public DataSource dateSourceFirst(){
return DataSourceBuilder.create().build();
}
@Bean
@ConfigurationProperties("buxuewushu.datasource.secend")
public DataSource dateSourceSecend(){
return DataSourceBuilder.create().build();
}
1.1.4 使用JdbcTemplate
Spring的JdbcTemplate
和NamedParameterJdbcTemplate
这两个类是自动配置的。可以直接在类中@Autowired进行使用。例子如下所示:
@Component
public class MyBean {
private final JdbcTemplate jdbcTemplate;
@Autowired
public MyBean(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
// ...
}
如果想配置一些关于template的参数的话,可以使用spring.jdbc.template.*
进行配置。
spring.jdbc.template.max-rows=500