Merge branch '1.5.x' into 2.0.x

This commit is contained in:
Phillip Webb
2018-05-25 18:45:37 -07:00
94 changed files with 401 additions and 341 deletions

View File

@@ -59,6 +59,10 @@ public class SampleAtmosphereApplication {
return registration;
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleAtmosphereApplication.class, args);
}
@Configuration
static class MvcConfiguration implements WebMvcConfigurer {
@@ -79,8 +83,4 @@ public class SampleAtmosphereApplication {
}
public static void main(String[] args) {
SpringApplication.run(SampleAtmosphereApplication.class, args);
}
}