jdbcTemplate 插入Mysql 并返回主键ID

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.PreparedStatementCreator;
import org.springframework.jdbc.support.GeneratedKeyHolder;
import org.springframework.jdbc.support.KeyHolder;

public class jdbcTest{
    //setter and getter
    //.....
    //function
    final String sql="...";
    KeyHolder keyHolder = new GeneratedKeyHolder();
    jdbcTemplate.update(new PreparedStatementCreator() {
        @Override
        public PreparedStatement createPreparedStatement(Connection connection) throws SQLException{
            PreparedStatement ps = connection.prepareStatement(sql, PreparedStatement.RETURN_GENERAT            ED_KEYS);
            ps.setString(1, "areaName");
            ps.setInt(2, 98);
            //....
            return ps;
        }
    }, keyHolder);
    return keyHolder.getKey().intValue();
}


转载于:https://my.oschina.net/u/225373/blog/407375

你可能感兴趣的:(jdbcTemplate 插入Mysql 并返回主键ID)