Add protected method to reactive config

master
Rossen Stoyanchev 8 years ago
parent 7ec85b21bb
commit 36765f0f52
  1. 4
      spring-web-reactive/src/main/java/org/springframework/web/reactive/config/WebReactiveConfiguration.java

@ -91,6 +91,10 @@ public class WebReactiveConfiguration implements ApplicationContextAware {
this.applicationContext = applicationContext;
}
protected ApplicationContext getApplicationContext() {
return this.applicationContext;
}
@Bean
public RequestMappingHandlerMapping requestMappingHandlerMapping() {

Loading…
Cancel
Save