我正在将 EJB 项目迁移到 Spring Boot 项目。我已成功将其他注释替换为 spring 注释,但 SessionContext 对象存在问题。我的遗留代码如下
@Resource
SessionContext sessionContext;
.....
if (some condition) {
sessionContext.setRollbackOnly();
return false;
}
对于此代码,我收到以下错误
A component required a bean of type 'javax.ejb.SessionContext' that could not be found.
Action:
Consider defining a bean of type 'javax.ejb.SessionContext' in your configuration.