您好,我试图跟踪我的Apache POI读取excel文件并将其导入数据库。我将导入进度(进度,时间等百分比)保存到数据库中的单独表中,以便我可以查询数据导入进度。

我的问题是,实体管理器仅将“ progress”状态保持一次,即在将数据加载到数据库的方法的末尾。

爪哇

    @Inject
        private EntityManager em;

    public void importTheData(String path){

        try
        {

            FileInputStream file = new FileInputStream(path);
            wb = WorkbookFactory.create(file);
        } catch (Exception ex) {}

        Sheet sheet = wb.getSheetAt(0);

        for (int i = 1; i <= sheet.getLastRowNum(); i++) {

            try {
                row = sheet.getRow(i);

                Table theTable = new Table();
                theTable.setDate(row.getCell(0).getDateCellValue());
    theTable.setDate1(row.getCell(1).getDateCellValue());
    theTable.setDate2(row.getCell(2).getDateCellValue());

    bdt.add(theTable);

}

public void importtheTable() {

    for(int i=0; i<bdt.size();i++)
    {

        em.persist(bdt.get(i));

        if(i%2000 == 0){
            em.flush();
            em.clear();
        }
    }

    }


方法setProgress(path,(100 * i / theTable.getLastRowNum()))尝试将进度状态持久化到单独的表中,但这仅发生一次(最后)

有人可以帮我吗?

谢谢

最佳答案

这取决于交易的范围,您是否使用注释来定义此内容?如果是,这说明了为什么一切都在最后完成。

否则,您将需要在此方法中开始/结束事务。

10-07 16:54