86 lines
2.9 KiB
Java
86 lines
2.9 KiB
Java
/*
|
|
* Copyright 2012-2015 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package sample.atmosphere;
|
|
|
|
import java.util.Collections;
|
|
|
|
import javax.servlet.ServletContext;
|
|
import javax.servlet.ServletException;
|
|
|
|
import org.atmosphere.cpr.AtmosphereInitializer;
|
|
import org.atmosphere.cpr.AtmosphereServlet;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
|
import org.springframework.boot.context.embedded.ServletContextInitializer;
|
|
import org.springframework.boot.context.embedded.ServletRegistrationBean;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.core.Ordered;
|
|
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
|
|
|
|
@Configuration
|
|
@EnableAutoConfiguration
|
|
public class SampleAtmosphereApplication {
|
|
|
|
@Bean
|
|
public EmbeddedAtmosphereInitializer atmosphereInitializer() {
|
|
return new EmbeddedAtmosphereInitializer();
|
|
}
|
|
|
|
@Bean
|
|
public ServletRegistrationBean atmosphereServlet() {
|
|
// Dispatcher servlet is mapped to '/home' to allow the AtmosphereServlet
|
|
// to be mapped to '/chat'
|
|
ServletRegistrationBean registration = new ServletRegistrationBean(
|
|
new AtmosphereServlet(), "/chat/*");
|
|
registration.addInitParameter("org.atmosphere.cpr.packages", "sample");
|
|
registration.addInitParameter("org.atmosphere.interceptor.HeartbeatInterceptor"
|
|
+ ".clientHeartbeatFrequencyInSeconds", "10");
|
|
registration.setLoadOnStartup(0);
|
|
// Need to occur before the EmbeddedAtmosphereInitializer
|
|
registration.setOrder(Ordered.HIGHEST_PRECEDENCE);
|
|
return registration;
|
|
}
|
|
|
|
@Configuration
|
|
static class MvcConfiguration extends WebMvcConfigurerAdapter {
|
|
|
|
@Override
|
|
public void addViewControllers(ViewControllerRegistry registry) {
|
|
registry.addViewController("/").setViewName("forward:/home/home.html");
|
|
}
|
|
|
|
}
|
|
|
|
private static class EmbeddedAtmosphereInitializer extends AtmosphereInitializer
|
|
implements ServletContextInitializer {
|
|
|
|
@Override
|
|
public void onStartup(ServletContext servletContext) throws ServletException {
|
|
onStartup(Collections.<Class<?>>emptySet(), servletContext);
|
|
}
|
|
|
|
}
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
SpringApplication.run(SampleAtmosphereApplication.class, args);
|
|
}
|
|
|
|
}
|