I\'m currently trying to move my project from Java EE to Spring Boot project. However, i\'ve been stucked and confused on the part with dispatcher servlet and web.xml and it
You can keep your web.xml, but it needs to add
org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener
in web.xml. And, required dependency of pom.xml.
All listener classes, filters converts in Java class. This class would be @Configuration.
If you have an interceptor, that can be moved to configuration class.