Hello all,
Unable to start my spring boot project, I need your help!! Please refer to the below files. Let me know if anything apart from the same is required.
The Primary class is:
Error on Console is: ErrorOnConsole.txt
pom.xml is: pom_xml.txt
Thanks for your time and support!!
Comment From: scottfrederick
This is a question that would be better suited to Stack Overflow. As mentioned in the guidelines for contributing, we prefer to use the issue tracker only for bugs and enhancements.
Spring Boot 2.2.4.RELEASE
requires Spring Framework 5.2.3.RELEASE
or later. You are explicitly setting the Spring Framework version to 4.3.11.RELEASE
:
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.3.11.RELEASE</version>
Remove the <version>
qualifier from that dependency and let Spring Boot manage the version of spring-web
.