0
何らかの原因で私のCSSおよびJSファイルにアクセスできません。どうしたの?アプリケーションが保護された後に静的ファイルにアクセスできない
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/", "/home").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.permitAll()
.and()
.logout()
.permitAll().and().authorizeRequests().antMatchers("/static/**").permitAll();
}
これが私の問題を解決しました。 – santafebound