Spring jdbcTemplate基本使用

JdbcTemplate开发步骤

  • 导入spring-jdbc和spring-tx坐标
  • 创建数据库表和实体
  • 创建JdbcTemplate对象
  • 执行数据库操作
<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.0.5.RELEASE</version>
        </dependency>
<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
            <version>5.0.5.RELEASE</version>
        </dependency>
public void test5() throws Exception {
        //读取配置文件
        ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");

        JdbcTemplate jdbcTemplate = (JdbcTemplate) app.getBean("jdbcTemplate");

        jdbcTemplate.update("insert into spring_user(user_name) value(?) ","李四");


    }
上一篇:dubbo+zookeeper 记录


下一篇:Dubbo和Zookeeper