码迷,mamicode.com
首页 > 数据库 > 详细

SpringBoot JDBC访问数据库

时间:2021-01-06 12:05:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:text   print   关闭   cat   etc   system   row   span   except   

1.pom.xml配置

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

2.application.yml配置

spring:
  datasource:
    username: 数据库名
    password: 密码
    url: jdbc:mysql://192.168.0.1:3306/数据库
    driver-class-name: com.mysql.cj.jdbc.Driver

3.数据库连接测试

@SpringBootTest
class DemoApplicationTests {

  @Autowired
  DataSource dataSource;

  @Test
  void contextLoads() throws SQLException {
    System.out.println(dataSource.getClass());
    Connection connection = dataSource.getConnection();
    System.out.println(connection);
    connection.close();//关闭连接
  }
}

SpringBoot JDBC访问数据库

标签:text   print   关闭   cat   etc   system   row   span   except   

原文地址:https://www.cnblogs.com/ljkltt/p/14225192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!