You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by GitBox <gi...@apache.org> on 2022/11/14 08:22:12 UTC

[GitHub] [dubbo] carlos-heshq commented on pull request #10929: InstantiationAwareBeanPostProcessorAdapter即将废弃,不再兼容Spring Boot 3.x

carlos-heshq commented on PR #10929:
URL: https://github.com/apache/dubbo/pull/10929#issuecomment-1313268570

   There are some error when unit test. Plz fix it. You could try to add some methed
   `
       public Object postProcessBeforeInstantiation(Class<?> beanClass, String beanName) throws BeansException {
           return null;
       }
   
       public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
           return bean;
       }
   
       public boolean postProcessAfterInstantiation(Object bean, String beanName) throws BeansException {
           return true;
       }
   
       public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
           return bean;
       }
   `
   to ReferenceAnnotationBeanPostProcessor to fix it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org