当我没有请求范围时,我有一些问题要忽略db.patients.aggregate([
{$sort:{dateOfBirth: -1}},
{$limit:3}
])
。我可以解释一下。
我使用Hibernate Envers在审计表中保存用户的一些信息。当存在请求(来自我的Rest Controller)时,这很有效,因为需要记录用户,因此在这种情况下总能找到用户。
但是,我也在和RabbitMQ合作。当我收到一些需要对数据库执行某些操作的消息时(按示例插入实体),我的代码尝试从应用程序上下文加载@Scope
bean。 User
Bean与User
请求绑定,Spring无法找到线程绑定请求。
所以,我收到错误:
@Scope
我想忽略这种情况,因为我在这种情况下的意图是填写"用户"有关" system"等信息的信息。表示此更改不是由用户直接进行的(因为没有用户参与)。
我的代码如下。
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scopedTarget.get': Scope 'request' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton; nested exception is java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread? If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet/DispatcherPortlet: In this case, use RequestContextListener or RequestContextFilter to expose the current request.
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:355)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
at org.springframework.aop.target.SimpleBeanTargetSource.getTarget(SimpleBeanTargetSource.java:35)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.getTarget(CglibAopProxy.java:705)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:655)
at com.domain.config.UserConfiguration$User$$EnhancerBySpringCGLIB$$c7e6e64e.getUserId(<generated>)
at com.domain.audit.RevisionEntityListener.newRevision(RevisionEntityListener.java:28)
at org.hibernate.envers.internal.revisioninfo.DefaultRevisionInfoGenerator.generate(DefaultRevisionInfoGenerator.java:93)
at org.hibernate.envers.internal.synchronization.AuditProcess.getCurrentRevisionData(AuditProcess.java:114)
at org.hibernate.envers.internal.synchronization.AuditProcess.executeInSession(AuditProcess.java:96)
at org.hibernate.envers.internal.synchronization.AuditProcess.doBeforeTransactionCompletion(AuditProcess.java:153)
at org.hibernate.envers.internal.synchronization.AuditProcessManager$1.doBeforeTransactionCompletion(AuditProcessManager.java:46)
at org.hibernate.engine.spi.ActionQueue$BeforeTransactionCompletionProcessQueue.beforeTransactionCompletion(ActionQueue.java:928)
... 38 common frames omitted
Caused by: java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread? If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet/DispatcherPortlet: In this case, use RequestContextListener or RequestContextFilter to expose the current request.
at org.springframework.web.context.request.RequestContextHolder.currentRequestAttributes(RequestContextHolder.java:131)
at org.springframework.web.context.request.AbstractRequestAttributesScope.get(AbstractRequestAttributesScope.java:41)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:340)
... 50 common frames omitted
(Hibernate Envers):
RevisionEntityListener
我的@Component
public class RevisionEntityListener implements RevisionListener, ApplicationContextAware {
private static ApplicationContext applicationContext;
@Override
public void newRevision(Object revisionEntity) {
RevEntity revEntity = (RevEntity) revisionEntity;
User user = applicationContext.getBean(User .class);
revEntity.setUserId(user.getUserId());
// code
}
private static void setStaticApplicationContext(ApplicationContext context) {
applicationContext = context;
}
@Override
public void setApplicationContext(ApplicationContext applicationContext)
throws BeansException {
setStaticApplicationContext(applicationContext);
}
}
:
UserConfiguration
答案 0 :(得分:1)
我不会&#39;知道这是否是最佳选择,但我创建了一个if
以查看SecurityContextHolder.getContext().getAuthentication()
是否存在:
User user;
if (SecurityContextHolder.getContext().getAuthentication() != null) {
user = applicationContext.getBean(User .class);
} else {
user = createSystemUser();
}
revEntity.setUserId(user.getUserId());