After spring upgradation to 1.5.9.RELEASE, my application is failing to run with some error as “Failed to start component [StandardEngine[Tomcat]”
buildscript { ext { springBootVersion = ‘1.5.9.RELEASE’ } repositories { mavenLocal() maven { name ‘nexus’ url “http://nexus.engati.ops:8081/repository/coviam-artifactory/” credentials { username repoUser password repoPassword } } mavenCentral() maven { url “https://repo.spring.io/plugins-snapshot” } maven { url “https://repo.spring.io/snapshot” } maven { url “https://repo.spring.io/milestone” } } dependencies { classpath (“io.spring.gradle:dependency-management-plugin:0.6.0.BUILD-SNAPSHOT”) classpath(“org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}”) classpath(“com.nethum.common:custom-plugin-service:1.0.0.2”) } } plugins { id “org.sonarqube” version […]