boolean isTemplateConfig = !org.springframework.util.StringUtils.isEmpty(project.getDataConfigTemplateId()) && BooleanStatusEnum.TRUE.getCode().equals(project.getIsDataConfig()); if (!isTemplateConfig) { legalizationFlag = false; } EngineModel engineModel = null; try { // 解析模型 engineModel = analyze(fileName, document.getFileId(), condition.getProjectId(), currentUserId, project.getCompanyId(), dwgAnalyseType, null); } catch (Exception e) { //捕获图形解析时返回的异常 desc = e.getMessage(); }
时间: 2024-02-15 15:29:03 浏览: 95
这段代码主要是对一个布尔值进行判断,判断的逻辑如下:
1. 通过调用Spring Framework中的StringUtils类的isEmpty方法判断project.getDataConfigTemplateId()是否为空,如果不为空则返回false,否则返回true。
2. 判断BooleanStatusEnum.TRUE.getCode().equals(project.getIsDataConfig())是否成立,如果成立则返回true,否则返回false。
3. 以上两个条件都成立的情况下,将isTemplateConfig赋值为true,否则赋值为false。
4. 如果isTemplateConfig为false,则将legalizationFlag赋值为false。
接着,该代码中还有一个try-catch语句块,其中调用了一个名为"analyze"的方法,并且对可能抛出的Exception异常进行了处理。在try代码块中,对"analyze"方法传入的参数进行了赋值,最后将方法的返回值赋值给了engineModel变量。在catch语句块中,对异常进行了捕获并将异常信息赋值给了desc变量。
相关问题
package wffz.jxmjkh.controller; import lombok.SneakyThrows; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import wffz.common.contants.ConstantProperties; import wffz.jxmjkh.service.JxMjKhTxService; import java.util.ArrayList; import java.util.List; import java.util.Map; public class SaveResultTask implements Runnable { private JxMjKhTxService jxMjKhTxService; // 上一次查询结果 private static List<Map<String, Object>> lastResult = new ArrayList<>(); private ConstantProperties constantProperties; public SaveResultTask(JxMjKhTxService jxMjKhTxService) { this.jxMjKhTxService = jxMjKhTxService; run(); } @SneakyThrows @Override public void run() { //查询表中的数据并保存在lastResult lastResult = jxMjKhTxService.getLastData(constantProperties.getJsbh()); // 获取当前接口查询结果 List<Map<String, Object>> result = jxMjKhTxService.selectJxMjkhTxData(constantProperties.getJsbh()); // 待插入的数据 List<Map<String, Object>> toBeInserted = new ArrayList<>(); // 待更新的数据 List<Map<String, Object>> toBeUpdated = new ArrayList<>(); // 待删除的数据 List<Map<String, Object>> toBeDeleted = new ArrayList<>(); // 遍历上一次查询结果,看看是否需要更新或删除 for (Map<String, Object> last : lastResult) { boolean found = false; for (Map<String, Object> current : result) { if (StringUtils.equals((CharSequence) current.get("jsbh"), (CharSequence) last.get("jsbh")) && StringUtils.equals((CharSequence) current.get("txxId"), (CharSequence) last.get("txxId")) && StringUtils.equals((CharSequence) current.get("sm"), (CharSequence) last.get("sm"))) { found = true; break; } } if (!found) { toBeDeleted.add(last); } } // 遍历当前查询结果,看看是否需要插入或更新 for (Map<String, Object> current : result) { boolean found = false; for (Map<String, Object> last : lastResult) { if (StringUtils.equals((CharSequence) current.get("jsbh"), (CharSequence) last.get("jsbh")) && StringUtils.equals((CharSequence) current.get("txxId"), (CharSequence) last.get("txxId")) && StringUtils.equals((CharSequence) current.get("sm"), (CharSequence) last.get("sm"))) { found = true; break; } } if (found) { toBeUpdated.add(current); } else { toBeInserted.add(current); } } // 批量插入 if (!toBeInserted.isEmpty()) { jxMjKhTxService.batchInsert(toBeInserted); } // 批量更新 if (!toBeUpdated.isEmpty()) { jxMjKhTxService.batchUpdate(toBeUpdated); } // 批量删除 if (!toBeDeleted.isEmpty()) { jxMjKhTxService.batchDelete(toBeDeleted); } // 保存本次查询结果 lastResult = result; } }代码不运行
这段代码是一个定时任务,会定时查询数据库中的数据,并与上一次查询结果进行比较,根据比较结果进行插入、更新或删除操作。具体实现逻辑为:
1. 查询上一次查询结果并保存在 `lastResult` 中。
2. 获取当前的查询结果。
3. 遍历上一次查询结果,如果在当前查询结果中找不到该条数据,则将其添加到待删除列表 `toBeDeleted` 中。
4. 遍历当前查询结果,如果在上一次查询结果中找到了该条数据,则将其添加到待更新列表 `toBeUpdated` 中;否则将其添加到待插入列表 `toBeInserted` 中。
5. 批量插入 `toBeInserted` 中的数据。
6. 批量更新 `toBeUpdated` 中的数据。
7. 批量删除 `toBeDeleted` 中的数据。
8. 保存本次查询结果到 `lastResult` 中。
需要注意的是,这段代码中使用了 Lombok 注解 `@SneakyThrows`,表示在方法中使用了可能会抛出异常的代码,但是不需要显式地使用 try-catch 块进行处理。同时,这段代码没有在类上添加 `@Controller` 或 `@Service` 等注解,无法被 Spring 容器扫描和管理,因此不会执行。
阅读全文