Spring的新手,我试图在表格中插入List<Map<String, Object>>
。到目前为止,我一直在使用SqlParameterSource
进行批量更新,在向它们提供java bean时可以正常工作。像这样:
@Autowired
private NamedParameterJDBCTemplate v2_template;
public int[] bulkInsertIntoSiteTable(List<SiteBean> list){
SqlParameterSource[] batch = SqlParameterSourceUtils
.createBatch(list.toArray());
int[] updateCounts = v2_template
.batchUpdate(
"insert into sitestatus (website, status, createdby) values (:website, :status, :username)",
batch);
return updateCounts;
}
但是,我尝试使用相同的技术代替bean的地图列表,它失败了(正确地说是这样)。
public int[] bulkInsertIntoSiteTable(List<Map<String, Object>> list){
SqlParameterSource[] batch = SqlParameterSourceUtils
.createBatch(list.toArray());
int[] updateCounts = v2_template
.batchUpdate(
"insert into sitestatus (website, status, createdby) values (:website, :status, :username)",
batch);
return updateCounts;
}
上述代码失败,出现以下异常:
Exception in thread "main" org.springframework.dao.InvalidDataAccessApiUsageException: No value supplied for the SQL parameter 'website': Invalid property 'website' of bean class [org.springframework.util.LinkedCaseInsensitiveMap]: Bean property 'website' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
at org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray(NamedParameterUtils.java:322)
at org.springframework.jdbc.core.namedparam.NamedParameterBatchUpdateUtils$1.setValues(NamedParameterBatchUpdateUtils.java:45)
at org.springframework.jdbc.core.JdbcTemplate$4.doInPreparedStatement(JdbcTemplate.java:893)
at org.springframework.jdbc.core.JdbcTemplate$4.doInPreparedStatement(JdbcTemplate.java:1)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:587)
at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:615)
at org.springframework.jdbc.core.JdbcTemplate.batchUpdate(JdbcTemplate.java:884)
at org.springframework.jdbc.core.namedparam.NamedParameterBatchUpdateUtils.executeBatchUpdateWithNamedParameters(NamedParameterBatchUpdateUtils.java:40)
at org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate(NamedParameterJdbcTemplate.java:303)
at tester.utitlies.dao.VersionTwoDao.bulkInsertIntoSites(VersionTwoDao.java:21)
at tester.utitlies.runner.Main.main(Main.java:28)
它失败了,因为它认为列表是一批bean,我猜。我找不到使用地图列表并使用NamedParameterJDBCTemplate
在Spring中执行批量更新的方法。请指教。
答案 0 :(得分:7)
根据Spring NamedParameterJDBCTemplate
文档,找到here,此方法可用于使用地图进行批量更新。
int[] batchUpdate(String sql, Map<String,?>[] batchValues)
真正的挑战是从相应的Map<String, Object>
获取List<Map<String, Object>>
数组。我使用以下代码获取数组并执行批量更新。
public static Map<String, Object>[] getArrayData(List<Map<String, Object>> list){
@SuppressWarnings("unchecked")
Map<String, Object>[] maps = new HashMap[list.size()];
Iterator<Map<String, Object>> iterator = list.iterator();
int i = 0;
while (iterator.hasNext()) {
Map<java.lang.String, java.lang.Object> map = (Map<java.lang.String, java.lang.Object>) iterator
.next();
maps[i++] = map;
}
return maps;
}
答案 1 :(得分:1)
您不能在NamedParameterJdbcTemplate的batchUpdate中直接使用bean,NamedParameterJdbcTemplate的batchUpdate仅接受数组形式的参数。 SqlParameterSource数组或Map数组。
在这里,我将演示如何使用Map数组实现目标。
考虑到以上问题,请将您的Bean列表转换为地图数组, 每个映射对应于要插入的一行或一个Bean对象,字段及其值作为键值对存储在映射内,其中key是字段名,value是所考虑字段的值。
@Autowired
private NamedParameterJDBCTemplate v2_template;
public int[] bulkInsertIntoSiteTable(List<SiteBean> list){
String yourQuery = "insert into sitestatus (website, status, createdby)
values (:website, :status, :username)"
Map<String,Object>[] batchOfInputs = new HashMap[list.size()];
int count = 0;
for(SiteBean sb : list.size()){
Map<String,Object> map = new HashMap();
map.put("website",sb.getWebsite());
map.put("status",sb.getStatus());
map.put("username",sb.getUsername());
batchOfInputs[count++]= map;
}
int[] updateCounts = v2_template.batchUpdate(yourQuery,batchOfInputs);
return updateCounts;
}
答案 2 :(得分:0)
我使用代码进行了测试。
Map<String, Object>[] rs = new Map<String, Object>[1];
Map<String, Object> item1 = new HashMap<>();
item1.put("name", "Tien Nguyen");
item1.put("age", 35);
rs[0] = item1;
NamedParameterJdbcTemplate jdbc = new NamedParameterJdbcTemplate(datasource);
// datasource from JDBC.
jdbc.batchUpdate("call sp(:name, :age)", rs);
希望很容易知道。 谢谢
答案 3 :(得分:0)
还有另一种方法可以使@SuppressWarnings("unchecked")
消失。
public static final String INSERT_INTO = "INSERT INTO {0} ({1}) VALUES ({2})";
private NamedParameterJdbcTemplate template;
template.batchUpdate(insertQuery(rowMaps.get(0)), batchArgs(mapRows));
/**
* Create SQL instruction INSERT from Map record
*
* @return literal INSERT INTO [schema].[prefix][table_name] (column1, column2, column3, ...)
* VALUES (value1, value2, value3, ...);
*/
public String insertQuery(Map<String, String> rowMap) {
String schemaTable = Objects.isNull(getSchema()) ? table : getSchema() + "." + table;
String splittedColumns = String.join(",", rowMap.keySet());
String splittedValues = rowMap.keySet().stream()
.map(s -> ":" + s).collect(Collectors.joining(","));
return MessageFormat.format(INSERT_INTO, schemaTable, splittedColumns, splittedValues);
}
private MapSqlParameterSource[] batchArgs(List<Map<String, String>> mapRows) {
int size = mapRows.size();
MapSqlParameterSource[] batchArgs = new MapSqlParameterSource[size];
IntStream.range(0, size).forEach(i -> {
MapSqlParameterSource args = new MapSqlParameterSource(mapRows.get(i));
batchArgs[i] = args;
});
return batchArgs;
}
最诚挚的问候
答案 4 :(得分:-1)
一个工作片段:
public List builkInsert(String insert,List details) {
Map<String, Object>[] maps = new HashMap[details.size()];
Map<String, Object>[] batchValues = (Map<String, Object>[]) details.toArray(maps);
int[] response= namedParameterJdbcTemplate.batchUpdate(insert, batchValues);
return Arrays.asList(response);
}