I have just started working on a spring boot project and I am using stater web as one of its dependency, I used spring.io to create my project from scratch and from there itself I got
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
}
Now the problem I faced is my static content is not loading properly. I can see the static URL on browser's dev-tools with 200 OK message(which probably means a successful response of a get request) but still, the styles are not there as my CSS is not loading. but if I use spring boot version 2.0.4 then everything works fine. I went through release notes for spring boot version '2.1.6 RELEASE' but couldn't find anything except this
Auto-Configuration Exclusion Exclusions are now applied consistently rather than only being applied locally. This applies to any exclusion defined on @EnableAutoConfiguration, @SpringBootApplication, @ImportAutoConfiguration or the spring.autoconfigure.exclude property.
which went over my head.
My question is if someone uses spring.io to create a project from scratch and in return gets all the dependencies compatible version from spring-boot starter parent and still the project for some reason like one mentioned above doesn't work then where should one go to find out what is the problem rather then changing version's.