Nikolay Hristov
Nikolay Hristov
This message was info level in 3.1.x but now after 3.2.x is a warning - you can check the changes from [here](https://github.com/spring-projects/spring-framework/blob/d59b2924d3cabbec66b28c6438961b06cba4892b/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java#L425C6-L425C6). Auto-proxying is a mechanism in Spring AOP where...
Hi @Nestoter Yes it is from spring-boot project, using [spring-boot-starter-web-services](https://start.spring.io/#!type=maven-project&language=java&platformVersion=3.2.2&packaging=jar&jvmVersion=21&groupId=com.example&artifactId=demo&name=demo&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.demo&dependencies=web-services) dependencies. The parent of spring-boot-starter-web-services with spring-boot 3.2.2 is ```xml org.springframework.ws spring-ws 4.0.8 ``` You can find the source here...
Hi @leventunver. Defining a DelegatingWsConfiguration as a bean can help eliminate [BeanPostProcessor ](https://github.com/spring-projects/spring-framework/blob/d59b2924d3cabbec66b28c6438961b06cba4892b/spring-context/src/main/java/org/springframework/context/support/PostProcessorRegistrationDelegate.java#L429) warning, but it could not work in the future. Also [applyBeanPostProcessorsAfterInitialization](https://github.com/spring-projects/spring-framework/blob/d59b2924d3cabbec66b28c6438961b06cba4892b/spring-beans/src/main/java/org/springframework/beans/factory/support/AbstractAutowireCapableBeanFactory.java#L432) is deprecated since 6.1 and as...