2010-01-21 2 views
3

시작 응용 프로그램이이 정보의 의미는 무엇입니까?스프링 보안이 자동 프록시에 적합하지 않습니다.

INFO: Bean 'org.springframework.aop.aspectj.AspectJPointcutAdvisor#0' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean '(inner bean)#2' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean 'org.springframework.aop.aspectj.AspectJPointcutAdvisor#1' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean '(inner bean)#4' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean 'org.springframework.aop.aspectj.AspectJPointcutAdvisor#2' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean '(inner bean)#6' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 
Jan 13, 2010 11:00:34 AM org.springframework.context.support.AbstractApplicationContext$BeanPostProcessorChecker postProcessAfterInitialization 
INFO: Bean 'org 

심판 : http://bamboo.ci.codehaus.org/build/viewBuildLog.action;jsessionid=85C63FD38CA3A5320AE8CECE84D570B8?buildNumber=3&buildKey=MODFORJ-ROSASBREAKFAST

답변

8

이 상당히 정상적인 메시지입니다. BeanPostProcessor은 컨텍스트에서 빈을 변경/포장/프록 싱하기위한 Spring 구조입니다. 컨텍스트 수명주기가 작동하는 방식 때문에 어떤 메시지는 보다 먼저BeanPostProcessor에서 찾아야합니다.

거의 아무것도 걱정할 필요가 없으므로 정보 수준입니다. 메시지를 트리거하는 컴포넌트는 보통 Spring의 내부 컴포넌트이다.

+1

Bean 중 어떤 Bean이 BeanPostProcessors에 의해 처리되고 어떤 Bean이 필요하지 않은지 알려주는 방법이 있다면 더 쉬울 것입니다. 이상적으로, 요구하는 사람들은'WARN'으로 비명을 지어야하고'DEBUG'로 막지 말아야합니다. 일이 깨지고 모든 소음이 의심 될 때까지 그들은 무시할 수 있습니다. – uvsmtid

관련 문제