use of org.springframework.beans.factory.config.CustomScopeConfigurer in project spring-framework by spring-projects.
the class WebSocketMessageBrokerConfigurationSupport method webSocketScopeConfigurer.
@Bean
public static CustomScopeConfigurer webSocketScopeConfigurer() {
CustomScopeConfigurer configurer = new CustomScopeConfigurer();
configurer.addScope("websocket", new SimpSessionScope());
return configurer;
}
Aggregations