Я добавил Spring Boot Admin UI с безопасностью, но страница входа CSS не загружается.Это дает мне MIME тип не поддерживается ошибка.
Может кто-нибудь дать решение, чтобы решить эту проблему?
@Configuration
public static class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.formLogin().loginPage("/login.html").loginProcessingUrl("/login").permitAll();
http.logout().logoutUrl("/logout");
http.csrf().disable();
http.authorizeRequests().antMatchers("/login.html", "/**/*.css", "/img/**", "/third-party/**").permitAll();
http.authorizeRequests().antMatchers("/**").authenticated();
http.authorizeRequests()
.antMatchers("/resources/**")
.permitAll();
http.httpBasic();
}
это ошибка