Hej.
W projekcie Spring używam standardowych rzeczy: Data, Security, Thymeleaf.
Dodałem niedawno nową podstronę html i po przejściu na nią w uruchomionej aplikacji dev tools w chrome pokazuje to:
"Refused to apply style from 'http://localhost:8080/seeDetails/details.css' because its MIME type ('application/json') is not a supported stylesheet MIME type, and strict MIME checking is enabled."
Pliki są w folderze resources/static
Nie rozumiem tego, bo wszystkie inne podstrony działają. W configu Spring Security ustawiłem coś takiego:
@Override
protected void configure(HttpSecurity http) throws Exception{
http
.sessionManagement()
.sessionCreationPolicy(SessionCreationPolicy.ALWAYS)
.and()
.authorizeRequests()
.antMatchers("/addAnimal").authenticated()
.anyRequest().permitAll()
.and()
.formLogin()
.loginPage("/login")
.permitAll()
.and()
.logout()
.permitAll();
}
żeby nie blokowało zasobów, ale na nic się to zdało :/