2023-05-25 21:42:57.628 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'trustedComputingRmiService' of type [com.sun.proxy.$Proxy8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2023-05-25 21:42:57.634 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'trustedsiteRmiService' of type [org.springframework.remoting.rmi.RmiProxyFactoryBean] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2023-05-25 21:42:57.635 [main] INFO o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'trustedsiteRmiService' of type [com.sun.proxy.$Proxy10] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
时间: 2023-11-30 12:07:54 浏览: 173
提示BeanPostProcessorChecker:is not eligible for getting processed by all BeanPostProcessors的原因
这是 Spring 框架的日志信息,说明了一些 Bean 对象不适合被所有的 Bean 后置处理器(BeanPostProcessor)进行处理,例如不适合自动代理。具体来说,这些 Bean 对象包括 trustedComputingRmiService、trustedsiteRmiService 等,它们的类型分别为 com.sun.proxy.$Proxy8 和 org.springframework.remoting.rmi.RmiProxyFactoryBean 等。这些 Bean 对象可能已经被其它的 Bean 后置处理器进行处理了,因此不再适合被所有的 Bean 后置处理器进行处理。这种情况通常不会导致实际的问题,只是一条日志信息,用于提示开发人员注意某些 Bean 对象的处理情况。
阅读全文