使用 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 (将#修改为@)