gpt4 book ai didi

spring - @Scheduled + Hibernate -> LazyInitializationException

转载 作者:行者123 更新时间:2023-12-04 01:51:09 25 4
gpt4 key购买 nike

我在 Spring Boot 2.0.5 下,使用 Spring Data JPA

我有一个这样的类(为了理解):

@Component
public class Synchronizer {

@Autowired
private MyService myService;

@Transactional
public void synchronizeAuto() {
List<MyTest> tests = myService.getTests();
tests.get(0).getMyLazyObject().getName();
}
}

配置在这里(我省略了其他配置文件):
@Configuration
@EnableAsync
@EnableScheduling
@EnableTransactionManagement
public class SpringAsyncConfiguration implements AsyncConfigurer, SchedulingConfigurer {

@Autowired
private AppConfigProperties appConfigProperties;

@Autowired
private Synchronizer synchronizer;

@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(appConfigProperties.getThreadpoolCorePoolSize());
executor.setMaxPoolSize(appConfigProperties.getThreadpoolMaxPoolSize());
executor.setQueueCapacity(appConfigProperties.getThreadpoolQueueCapacity());
executor.setThreadNamePrefix("threadPoolExecutor-");
executor.initialize();
return executor;
}

@Override
public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {
return new AsyncExceptionHandler();
}

@Override
public void configureTasks(ScheduledTaskRegistrar taskRegistrar) {
taskRegistrar.addCronTask(new Runnable() {

@Override
@Transactional
public void run() {
synchronizer.synchronizeAuto();
}

}, appConfigProperties.getCronExpression());
}
}

MyService 类调用 Spring JPA 存储库以获取所有“测试”实例

“测试”实例具有延迟加载 (MyLazyObject)

无论如何,如果我从 Controller 调用该方法,一切都会像魅力一样。

当它从调度程序运行时,我收到以下错误:
org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.tinea.apix.service.model.entity.apim.APIManagerEntity.synchroHistory, could not initialize proxy - no Session

任何的想法?

最佳答案

由于使用了configureTasks在配置时调用,Syncronizer很早就创建了。太早了,它不再有资格进行代理创建/后处理。这反过来导致,至少是任务,使用未代理的实例并且没有 @Transactional应用。

相反,您应该使用 @Scheduled注释连同 cronString属性以与您现在相同的方式解决它。

@Scheduled(cron="@appConfigProperties.cronExpression")
@ SpEL 表达式中的符号表示应该解析具有给定名称的 bean。

关于spring - @Scheduled + Hibernate -> LazyInitializationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53045097/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com