我有这个代码:
contact.getUseTypes().forEach(useType -> {
try {
Method methodSet = JLM0K2.class.getDeclaredMethod("set" + useType.getCode().getCampoMainframe(),
String.class);
methodSet.invoke(jlk2Req, contact.getContactPointId());
} catch (Exception e) {
FormalizationServiceImpl.log.error("Error: " + useType.getCode().getCampoMainframe(), e);
}
});
我已经在登录了。我究竟做错了什么? ps:我不能抛出这个异常。
您的代码不必要地复杂。而不是
FormalizationServiceImpl.log.error(
就写吧
log.error(
这应该有助于 SonarCloud 了解您在做什么。