반응형
AOP하는법
-
Spring AOP 설정방법 - @annotation 두 번째(백기선님)Spring/Spring 기본 지식 2020. 3. 30. 22:41
1. pom.xml 추가 org.springframework spring-aspects ${org.springframework-version} 2. servelt-context에 설정 추가 3. Controller에서 @anntation 붙이기 @Controller public class HomeController { @RequestMapping(value = "/", method = RequestMethod.GET) @TestAOP public String home(Locale locale, Model model) throws Exception { System.out.println("메소드 안이여"); return "home"; } } 4. @annotation interface 만들기 @Retenti..