第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用 Spring Security 啟用 h2 控制臺

使用 Spring Security 啟用 h2 控制臺

BIG陽 2023-05-17 14:49:09
我想在啟用了 Spring Security 的 Spring Boot 項目中使用 h2-console。我的配置如下所示,但我無法訪問任何未經(jīng)身份驗證的路徑。如果我打開控制臺路徑,登錄提示符就會出現(xiàn)。是不是順序錯了?我已經(jīng)用 WebSecurityConfigurerAdapter 以舊方式嘗試過它并且它有效,但我想使用新的東西。@EnableWebFluxSecuritypublic class SecurityConfiguration {    @Bean    public SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {        return http                .csrf().disable()                .headers().frameOptions().disable().and()                .authorizeExchange()                .anyExchange().permitAll()                .and()                .httpBasic().and()                .build();    }}我將配置更改為以下內(nèi)容,并且身份驗證像我預期的那樣排除了 h2 控制臺:@Configurationpublic class SecurityConfiguration extends WebSecurityConfigurerAdapter {    @Override    protected void configure(HttpSecurity http) throws Exception {        http.headers().frameOptions().disable().and()                .csrf().disable();        http                .authorizeRequests()                .antMatchers("/", "/h2-console/**").permitAll()                .anyRequest().authenticated()                .and()                .formLogin()                .permitAll()                .and()                .logout()                .permitAll();    }}
查看完整描述

1 回答

?
慕雪6442864

TA貢獻1812條經(jīng)驗 獲得超5個贊

H2 控制臺似乎只能在基于 servlet 的服務器上使用,而 webflux 使用的碼頭不是基于 servlet 的服務器。

h2 無法訪問


查看完整回答
反對 回復 2023-05-17
  • 1 回答
  • 0 關注
  • 242 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號