💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 基于HTTP Basic认证 继承`WebSecurityConfigurerAdapter`类修改配置 ```java @Configuration public class BrowserSecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.httpBasic() // HTTP Basic方式 .and() .authorizeRequests() // 授权配置 .anyRequest() // 所有请求 .authenticated(); // 都需要认证 } } ``` 重启服务并访问http://www.zhangpn.com/hello就会以HTTP Basic方式进行认证。