Aspect 어노테이션 사용을 위한 설정.

by 조쉬 posted Aug 18, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄



스프링에서 Aspect 어노테이션을 사용하기 위해서는 아래와 같은 XML 설정이 필요하다.



<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop-4.1.xsd">

    <!-- @Aspect 사용을 위한 설정 -->
    <aop:aspectj-autoproxy />
    
</beans>