springboot整合jdbctemplate

一、创建项目导入依赖

   

1.1

springboot整合jdbctemplate

   

1.2

   

springboot整合jdbctemplate

   

   

1.3

   

springboot整合jdbctemplate

   

二、创建service,pojo,controller

   

springboot整合jdbctemplate

   

2.1

创建一个实体类User类属性userId,userName,userPwd

   

2.2

我这里sql语句直接写service层了

springboot整合jdbctemplate

   

spring提供jdbctemplate的自动话配置,所以我们直接使用就好了,

jdbctemplate提供的增删改都是update()方法

查询所有query(),有俩种方法,

第一种RowMapper<User>是查询数据库字段和类的属性名不一致的情况

第二种BeanPropertyRowMapper就是数据库和类的属性一致情况

   

   

Controller

springboot整合jdbctemplate

   

上一篇:Spring的JdbcTemplate使用


下一篇:spring--jdbc持久层、操作数据库