SpringBoot测试数据库连接Spring Boot测试数据库连接
@Autowired
JdbcTemplate jdbcTemplate;
@Test
void fei3() { // 测试连接数据库
Long aLong = jdbcTemplate.queryForObject("select count(*) from user", Long.class);
jdbctemplate查询一条数据System.out.println("========================");
System.out.println(aLong);
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。