SUPPORT-9023: move socket connection to listener; fix NPE; add retryable annotation

This commit is contained in:
gulnaz 2025-03-24 12:45:14 +03:00
parent c8aa2b8b08
commit 5537dbf087
2 changed files with 18 additions and 0 deletions

View file

@ -228,6 +228,14 @@
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.parent.artifactId}</finalName>

10
pom.xml
View file

@ -312,6 +312,16 @@
<artifactId>spring-retry</artifactId>
<version>2.0.11</version>
</dependency>
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>2.0.11</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>6.2.5</version>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>