It's because of the issue of /info=34424 - with 404 error...whoops lost connections - that I had to abandon using the xml approach suggested at
other places. I have Spring 4.2 in my project and many SockJS Stomp implementations usually work well with Spring Boot implementations.
This implementation from Baeldung worked(for me without changing from Spring 4.2 to 5). After Using the dependencies mentioned in his blog, it still gave me ClassNotFoundError. I added the below dependency to fix it.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.2.3.RELEASE</version>
</dependency>