본문 바로가기

Java/Spring

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



스프링에서 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>