SolutionTask.java 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.dashitech.migration.task.solution;
  2. import com.dashitech.migration.BaseTask;
  3. import com.dashitech.migration.core.FieldMapper;
  4. import com.dashitech.migration.task.other.DictionaryTask;
  5. import com.dashitech.migration.task.uc.HospitalTask;
  6. import com.dashitech.migration.util.JdbcUtil;
  7. import org.apache.commons.logging.Log;
  8. import org.apache.commons.logging.LogFactory;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.stereotype.Component;
  11. import org.springframework.transaction.annotation.Transactional;
  12. import java.util.List;
  13. import java.util.Map;
  14. /**
  15. * @author song
  16. * @date 2024年10月12日
  17. */
  18. @Component
  19. public class SolutionTask extends BaseTask {
  20. private Log log = LogFactory.getLog(SolutionTask.class);
  21. @Autowired
  22. HospitalTask hospitalTask;
  23. @Autowired
  24. DictionaryTask dictionaryTask;
  25. @Override
  26. @Transactional(rollbackFor = Exception.class)
  27. public void start() {
  28. log.info("知识库数据SolutionTask转换开始");
  29. StringBuffer sql = new StringBuffer("SELECT id,version,case when categoryId is null then "+getDicId(jdbcTemplateHsms,"solution_type","3")+" else "+getDicId(jdbcTemplateHsms,"solution_type","1")+" end as type,");
  30. sql.append("title,keywords,content,status,create_user_id,createtime as create_time,renew_user_id,renewtime as renew_time,solutionnumber as solution_number,");
  31. sql.append("version_number,star,categoryId as category_id,introduce_count,file_abstract,duty_dept as hos_id,IF( `status` = 74, 1, 0 ) AS delete_flag FROM itsm_solution");
  32. List<Map<String, Object>> solutionList = jdbcTemplateMdv2.queryForList(sql.toString());
  33. FieldMapper mapper = new FieldMapper();
  34. Map<Long, Long> hosIdCache = hospitalTask.loadCache().getIdCache();
  35. Map<Long, Long> dicIdCache = dictionaryTask.loadCache().getIdCache();
  36. mapper.addOperationReplace("hos_id", hosIdCache);
  37. mapper.addOperationReplace("status", dicIdCache);
  38. mapper.trans2JdbcRow(solutionList);
  39. JdbcUtil jdbcUtil = new JdbcUtil(jdbcTemplateHsms);
  40. jdbcUtil.batchPageInsert("itsm_itsm_solution", mapper.getRows());
  41. //clear释放内存
  42. mapper.clear();
  43. }
  44. @Override
  45. public FieldMapper loadCache() {
  46. return null;
  47. }
  48. }