如何解决使用 Spring Batch 是否可以将数据插入需要动态调用的表中?
String recordHashString = fileUtil.createHashFromString(dto.getLine()); -- 为一行创建哈希
if (recordHashRepository.findById(recordHashString).isPresent()) /* checking if hash created is present in the record hash table*/
return pharmacyInvoice;
else
recordHashRepository.save(new RecordHash(recordHashString,datafeedId)); /*if hash is not present then insert the hash to the record hash table*/
在上面的代码中,哈希的检查和哈希的插入来自同一个表。表名目前是硬编码的。有没有办法动态发送表名而不是硬编码?
这个问题的借口 - Can we use Spring batch Item Reader and Writer on a file which needs to skip first and last line?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。