Chcę uzyskać obiekt odpowiedzi w Spring AOP przed poradą. Jeśli sesja jest nieważna, chcę przekierować na stronę logowania, ale nie mogę uzyskać obiektu HttpServletResponse w metodzie Przed poradą.Jak uzyskać obiekt HttpServletRequest i HttpServletResponse w Spring AOP
Próbowano w następujący sposób.
@Autowired
private HttpServletResponse response;
public void setResponse(HttpServletResponse response) {
this.response = response;
}
StackTrace:
caused by: org.springframework.beans.factory.BeanCreationException: Could not autowire field: javax.servlet.http.HttpServletResponse com.****.****.aspect.LogProvider.response; nested exception is
org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [javax.servlet.http.HttpServletResponse] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:506)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:87)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:284)
... 33 more
Każda pomoc będzie mile widziane.
Zamiast autowiring, próbowaliście tego? 'HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.currentRequestAttributes()). GetRequest(); ' –
Dzięki za odpowiedź. Spróbuję z tym –
Potrzebowałem obiektu HttpServletResponse. –