Skip to content

Commit 9dbc3e2

Browse files
jfarcandsnicoll
authored andcommitted
Upgrade sample to Atmosphere 2.4.14
Closes gh-10447
1 parent ce8b59f commit 9dbc3e2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spring-boot-samples/spring-boot-sample-atmosphere/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
<dependency>
3333
<groupId>org.atmosphere</groupId>
3434
<artifactId>atmosphere-runtime</artifactId>
35-
<version>2.2.4</version>
35+
<version>2.4.14</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.webjars</groupId>
3939
<artifactId>atmosphere-javascript</artifactId>
40-
<version>2.2.3</version>
40+
<version>2.3.4</version>
4141
</dependency>
4242
<!-- Test -->
4343
<dependency>

spring-boot-samples/spring-boot-sample-atmosphere/src/main/java/sample/atmosphere/SampleAtmosphereApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
import javax.servlet.ServletContext;
2222
import javax.servlet.ServletException;
2323

24-
import org.atmosphere.cpr.AtmosphereInitializer;
2524
import org.atmosphere.cpr.AtmosphereServlet;
25+
import org.atmosphere.cpr.ContainerInitializer;
2626

2727
import org.springframework.boot.SpringApplication;
2828
import org.springframework.boot.SpringBootConfiguration;
@@ -69,7 +69,7 @@ public void addViewControllers(ViewControllerRegistry registry) {
6969

7070
}
7171

72-
private static class EmbeddedAtmosphereInitializer extends AtmosphereInitializer
72+
private static class EmbeddedAtmosphereInitializer extends ContainerInitializer
7373
implements ServletContextInitializer {
7474

7575
@Override

0 commit comments

Comments
 (0)