zoukankan      html  css  js  c++  java
  • spring之操作数据库之使用NamedParameterJdbcTemplate(具名参数)

    接上一节:https://www.cnblogs.com/xiximayou/p/12167150.html。

    在applicationContext.xml中配置namedParameterJdbcTemplate。

        <!-- 配置 NamedParameterJdbcTemplate, 该对象可以使用具名参数, 其没有无参数的构造器, 所以必须为其构造器指定参数 -->
        <bean id="namedParameterJdbcTemplate"
            class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
            <constructor-arg ref="dataSource"></constructor-arg>    
        </bean>

    在JDBCTest.java中进行测试:

        private ApplicationContext ctx = null;
        private JdbcTemplate jdbcTemplate;
        private EmployeeDao employeeDao;
        private DepartmentDao departmentDao;
        private NamedParameterJdbcTemplate namedParameterJdbcTemplate;
        {
            ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
            jdbcTemplate = (JdbcTemplate) ctx.getBean("jdbcTemplate");
            employeeDao = ctx.getBean(EmployeeDao.class);
            departmentDao = ctx.getBean(DepartmentDao.class);
            namedParameterJdbcTemplate = ctx.getBean(NamedParameterJdbcTemplate.class);
        }
        
        /**
         * 可以为参数起名字. 
         * 1. 好处: 若有多个参数, 则不用再去对应位置, 直接对应参数名, 便于维护
         * 2. 缺点: 较为麻烦. 
         */
        @Test
        public void testNamedParameterJdbcTemplate(){
            String sql = "INSERT INTO employees(last_name, email, dept_id) VALUES(:ln,:email,:deptid)";
            
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("ln", "FF");
            paramMap.put("email", "ff@atguigu.com");
            paramMap.put("deptid", 2);
            
            namedParameterJdbcTemplate.update(sql, paramMap);
        }
        /**
         * 使用具名参数时, 可以使用 update(String sql, SqlParameterSource paramSource) 方法进行更新操作
         * 1. SQL 语句中的参数名和类的属性一致!
         * 2. 使用 SqlParameterSource 的 BeanPropertySqlParameterSource 实现类作为参数. 
         */
        @Test
        public void testNamedParameterJdbcTemplate2(){
            String sql = "INSERT INTO employees(last_name, email, dept_id) "
                    + "VALUES(:lastName,:email,:dpetId)";
            
            Employee employee = new Employee();
            employee.setLastName("XYZ");
            employee.setEmail("xyz@sina.com");
            employee.setDpetId(3);
            
            SqlParameterSource paramSource = new BeanPropertySqlParameterSource(employee);
            namedParameterJdbcTemplate.update(sql, paramSource);
        }
  • 相关阅读:
    发邮件
    Django 管理多个APP且在后台显示 自定义APP的名称
    MySQL的sql_mode模式说明及设置
    Go语言 基础 函数
    Go语言 基础 map
    Selenium 3 -how to locate the chromedriver and geckodriver place?
    Selenium3笔记-WebDriver源码初探
    MySQL 学习用employee数据库表参考使用
    hibernate spring annotation setup
    Maven full settings.xml
  • 原文地址:https://www.cnblogs.com/xiximayou/p/12167219.html
Copyright © 2011-2022 走看看