gpt4 book ai didi

spring - 允许在 Rest 端点 Spring Boot 上发布

转载 作者:行者123 更新时间:2023-12-03 21:35:38 27 4
gpt4 key购买 nike

我有一个 rest 应用程序规范,它允许任何用户向端点发送 POST 请求,但将 GET 限制为仅系统的注册用户。有没有办法公开端点的某些方法,例如(POST 或 PUT)并限制其他方法,例如(GET 或 UPDATE),而不是仅仅保护端点的所有方法。

最佳答案

当然。您可以在定义 HttpSecurity 时指定要保护的 HTTP 方法:

@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {

@Override
protected void configure(HttpSecurity http) throws Exception {
http.
csrf().disable().
sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).
and().
authorizeRequests().
antMatchers(HttpMethod.GET, "/rest/v1/session/login").permitAll().
antMatchers(HttpMethod.POST, "/rest/v1/session/register").permitAll().
antMatchers(HttpMethod.GET, "/rest/v1/session/logout").authenticated().
antMatchers(HttpMethod.GET, "/rest/v1/**").hasAuthority("ADMIN").
antMatchers(HttpMethod.POST, "/rest/v1/**").hasAuthority("USER").
antMatchers(HttpMethod.PATCH, "/rest/v1/**").hasAuthority("USER").
antMatchers(HttpMethod.DELETE, "/rest/v1/**").hasAuthority("USER").
anyRequest().permitAll();
}

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth
.inMemoryAuthentication()
.withUser('admin').password('secret').roles('ADMIN');
}

@Bean
@Override
AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean()
}
}

关于spring - 允许在 Rest 端点 Spring Boot 上发布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24049784/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com