Skip to main content

Spring Boot基础学习记录之使用JDBC访问关系数据

Spring Boot基础学习记录之使用JDBC访问关系数据

Spring Boot基础学习记录之使用JDBC访问关系数据

1、依赖添加

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
    <groupId>com.h2database</groupId>
    <artifactId>h2</artifactId>
</dependency>

2、mav自动安装依赖,如果没有的话,请检查

3、创建对象Customer

package com.gowhich.springdemo;
public class Customer {
    private long id;
    private String firstName, lastName;
    public Customer(long id, String firstName, String lastName) {
        this.id = id;
        this.firstName = firstName;
        this.lastName = lastName;
    }
    @Override
    public String toString() {
        return String.format("Customer[id=%d, firstName=%s, lastName=%s]", id, firstName, lastName);
    }
}

这个对象可以理解为Model,就是要跟数据库表对应的关系

假设表customers有三个字段

id,first_name,last_name

id对应这里的Customer Model 的 id

first_name对应这里的Customer Model 的 firstName

last_name对应这里的Customer Model 的 lastName

4、修改Application.java[程序启动的入库文件,也许你的名字并不是这个],如我的demo中是SpringDemoApplication.java,修改后的结果是

public class SpringDemoApplication implements CommandLineRunner {
	public static void main(String[] args) {
		SpringApplication.run(SpringDemoApplication.class, args);
	}
    // 创建日志
	private static final Logger log = LoggerFactory.getLogger(SpringDemoApplication.class);
    // 初始化JdbcTemplate 会自动连接h2database数据库
	@Autowired
    JdbcTemplate jdbcTemplate;
	@Override
    public void run(String... strings) throws Exception {
        log.info("Creating tables");
        // 创建表
        jdbcTemplate.execute("DROP TABLE customers IF EXISTS ");
        jdbcTemplate.execute("CREATE TABLE customers ("+
                "id SERIAL, first_name VARCHAR(255), last_name VARCHAR(255))");
        // 输入数据
        List<Object[]> splitUpNames = Arrays.asList("John Woo","Jeff Dean", "Josn Bokch", "Josh Long").stream()
                .map(name -> name.split(" ")).collect(Collectors.toList());
        splitUpNames.forEach(name -> log.info(String.format("Inserting customers record for %s %s", name[0], name[1])));
        jdbcTemplate.batchUpdate("INSERT INTO customers (first_name, last_name) VALUES (?, ?)", splitUpNames);
        // 查询数据
        log.info("Querying for customers records where first_name = 'Josh");
        jdbcTemplate.query(
                "SELECT id, first_name, last_name FROM customers WHERE first_name = ?",
                new Object[] {"Josh"},
                (rs, column) -> new Customer(rs.getLong("id"), rs.getString("first_name"), rs.getString("last_name")))
        .forEach(customer -> log.info(customer.toString()));
    }
}

5、启动项目

启动项目后,会看到如下的输出

Spring Boot基础学习记录之使用JDBC访问关系数据

版权声明

版权声明

durban.zhang 创作并维护的 Walkerfree 博客采用 创作共用保留署名-非商业-禁止演绎4.0国际许可证。本文首发于 Walkerfree 博客(http://www.walkerfree.com/),版权所有,侵权必究。本文永久链接:http://www.walkerfree.com/article/136