feat: (REQ-3300) 修复启动报错-类加载

This commit is contained in:
xudawei 2025-02-06 11:39:14 +08:00
parent 3aa67ead16
commit d96ab83847
3 changed files with 4 additions and 8 deletions

View File

@ -10,15 +10,12 @@ import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.context.annotation.Import;
@MapperScan(value = {"cn.axzo.**.mapper"})
@SpringBootApplication(scanBasePackages = "cn.axzo", exclude = {
org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class
,cn.axzo.framework.swagger.yapi.config.SyncSwaggerToYApiAutoConfiguration.class
})
@SpringBootApplication
@EnableFeignClients(basePackages = {
"cn.axzo"
})
@EnableAspectJAutoProxy()
@Import({RocketMQEventConfiguration.class, ReportServiceSDK.class})
@Import({RocketMQEventConfiguration.class})
public class NanopartApplication {
public static void main(String[] args) {
SpringApplication.run(NanopartApplication.class, args);

View File

@ -27,7 +27,6 @@ public class VisaDetailByIdRequest {
/**
* 人员Id
*/
@NotNull(message = "人员Id不能为空")
private Long personId;
private Long workspaceId;

View File

@ -153,8 +153,8 @@ public class ChangeRecordServiceImpl extends ServiceImpl<ChangeRecordDao, Change
@Resource
private VisaOrganizationalNodeUserGateway nodeUserGateway;
@Resource
private ReportServiceSDK reportServiceSDK;
// @Resource
// private ReportServiceSDK reportServiceSDK;
@Resource
private WorkflowGateway workflowGateway;
@Resource