使用JdbcTemplate

0x00 配置application.properties

mysql默认SSL登录,使用useSSL=false可忽略。
直接连接到数据库member时,jdbc:mysql://127.0.0.1:3306/member?useSSL=false

spring.datasource.url=jdbc:mysql://127.0.0.1:3306?useSSL=false
spring.datasource.username=root
spring.datasource.password=pwd
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

0x01 添加依赖pom.xml

        
            mysql
            mysql-connector-java
            runtime
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            org.springframework.boot
            spring-boot-starter-jdbc
        

0x02 数据库增删改查

    @Autowired
    private JdbcTemplate jdbcTemplate;
    // ...
    List> list = jdbcTemplate.queryForList(sql);

你可能感兴趣的:(使用JdbcTemplate)