[SPRING] Spring AOP && MVC로 주문하기
SPRINGSpring AOP && MVC로 주문하기
스프링 MVC 컨트롤러와 함께 Spring AOP를 사용하려고합니다. 나는 3 가지 양상을 가지고 있으며, 특정한 순서대로되기를 원한다. 이렇게하기 위해 Ordered 인터페이스를 사용하고 getOrder 메서드를 구현합니다.
@Aspect
@Component
public class LoggingAspect implements Ordered{
public int getOrder() {
System.out.println("Abra");
return 1;
}
조언 클래스 :
@Component
@Controller
public class HomeController {
Pointcuts :
@Aspect
public class SystemArchitecture {
@Pointcut("execution (* com.jajah.StorageManager.HomeController.*(..))")
public void inHomeController(){}
@Pointcut("execution (* com.jajah.StorageManager.HomeController.*(..))")
public void loggable(){}
@Pointcut("execution (* com.jajah.StorageManager.HomeController.*(..))")
public void authenticated(){}
}
구성 :
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
<annotation-driven />
<context:annotation-config />
<aop:aspectj-autoproxy proxy-target-class="false"/>
<beans:bean id="AuthenticationAspect" class="com.jajah.CommonAspects.SecurityAspects.OAuthAspect"/>
<beans:bean id="ErrorHandlingAspect" class="com.jajah.StorageManager.Aspects.ErrorHandlingAspect"/>
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<!-- <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean> -->
<beans:bean name="homeController" class="com.jajah.StorageManager.HomeController">
<beans:constructor-arg>
<beans:ref bean="CloudStorage"/>
</beans:constructor-arg>
<beans:constructor-arg>
<beans:ref bean="ConfigurationContainer"/>
</beans:constructor-arg>
</beans:bean>
<beans:bean id="CloudStorage" name="CloudStorage" class="com.jajah.StorageManager.CloudStorageProxy" scope="singleton">
<beans:constructor-arg>
<beans:ref bean="ConfigurationContainer"/>
</beans:constructor-arg>
</beans:bean>
<beans:bean id ="ConfigurationContainer" class="com.jajah.StorageManager.ConfigurationContainer" scope="singleton"/>
</beans:beans>
getOrder는 트릭을하지 않습니다. 실용적인 조언을 주시면 고맙겠습니다. 정확한 대답이 없다면 Spring Proxy와 직조 메커니즘에 대한 이론적 지식을 높이 평가할 것입니다.
요청시 요구되는 코드 / 구성을 게시합니다. 읽어 주셔서 감사합니다.
최신 정보: 1. 나는 같은 결과로 @ 주문 (1)을 시도했다. 2. 같은 패키지로 측면 이동을 시도했지만 순서가 변경되었지만 여전히 제어 할 수는 없었습니다.
해결법
-
==============================
1.Ordered 인터페이스를 구현할 필요가 없습니다.
Ordered 인터페이스를 구현할 필요가 없습니다.
Spring AOP에서는 훨씬 쉽게 작업을 수행 할 수있다.
@Aspect @Order(1) public class AspectA { @Before("............") public void doit() {} } @Aspect @Order(2) public class AspectB { @Before(".............") public void doit() {} }
최신 정보:
@Aspect @Order(1) public class SpringAspect { @Pointcut("within(com.vanilla.service.MyService+)") public void businessLogicMethods(){} @Around("businessLogicMethods()") public Object profile(ProceedingJoinPoint pjp) throws Throwable { System.out.println("running Advice #1"); Object output = pjp.proceed(); return output; } } @Aspect @Order(2) public class SpringAspect2 { @Pointcut("within(com.vanilla.service.MyService+)") public void businessLogicMethods(){} @Around("businessLogicMethods()") public Object profile(ProceedingJoinPoint pjp) throws Throwable { System.out.println("running Advice #2"); Object output = pjp.proceed(); return output; } }
이제 응용 프로그램 컨텍스트 구성 XML :
<context:annotation-config /> <aop:aspectj-autoproxy /> <bean id="springAspect" class="com.vanilla.aspect.SpringAspect" /> <bean id="springAspect2" class="com.vanilla.aspect.SpringAspect2" />
AOP 프록시를 활성화하려면 다음을 수행해야합니다.
<aop:aspectj-autoproxy />
그렇지 않으면 조언이 활성화되지 않습니다.
업데이트 2 :
나는이 문제에 대한 연구를하고있다. @order annotation은 Spring의 기반 프록시 인 AOP에서만 작동한다. 제직을 사용하는 경우 문서화에 동의하십시오. 선전 우선권 옵션을 사용해야합니다.
업데이트 3
다음으로 구성해야합니다.
<bean id="systemArchitecture" class="x.y.z.SystemArchitecture" />
나는 당신의 코드에서 그것을 볼 수 없다.
어쨌든. 제게 페이스 북에 메시지를 남겨주세요. 그리고 당신이하려고하는 것을 정확하게 수행하는 실례를 보내 드리겠습니다.
from https://stackoverflow.com/questions/9051728/ordering-aspects-with-spring-aop-mvc by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] 스프링 보안 - 요청 매개 변수가있는 URL은 무시됩니다. (0) | 2019.01.03 |
---|---|
[SPRING] Maven과 Spring을 이용한 프로젝트 제어 : Maven 프로파일을 사용하여 Spring 설정 파일을 설정하는 방법은 무엇입니까? (0) | 2019.01.03 |
[SPRING] 분리 된 엔터티가 지속 오류를 전달했습니다. (0) | 2019.01.03 |
[SPRING] Feign 클라이언트 + Spring Cloud (Brixton RC2)에서 동적 값을 사용하여 @Headers 사용 (0) | 2019.01.03 |
[SPRING] Spring 데이터 저장소에 대한 매개 변수로 추상 수퍼 클래스 사용 (0) | 2019.01.03 |