如何使用 Spring Security 和 SSL 忽略某些路径?

use*_*825 7 ssl spring-security

这是我的 Spring 配置:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.security.core.authority.AuthorityUtils;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;

@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class X509Configuration extends WebSecurityConfigurerAdapter {

    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring().antMatchers("/ws/items.wsdl");
    }

    @Override
    public void configure(final HttpSecurity http) throws Exception {
        http
            .sessionManagement()
                 .sessionCreationPolicy(SessionCreationPolicy.NEVER)
                 .and()
            .authorizeRequests()
                 .antMatchers("/ws/items.wsdl").permitAll()
                 .and()
            // require authorization for everything else
            .authorizeRequests()
                 .anyRequest().authenticated()
                 .and()
            .x509()
                 .subjectPrincipalRegex("CN=(.*?)(?:,|$)")
                 .userDetailsService(userDetailsService())
                 .and()
            .csrf().disable()

            // configure form login
            .formLogin().disable()

            // configure logout
            .logout().disable();
    }

    @Bean
    public UserDetailsService userDetailsService() {
        return new UserDetailsService() {
            @Override
            public UserDetails loadUserByUsername(String username) {
                if (username.equals("cid")) {
                    return new User(username, "",
                        AuthorityUtils
                                .commaSeparatedStringToAuthorityList("ROLE_USER"));
                }
                throw new UsernameNotFoundException("User not found!");
            }
        };
    }
}
Run Code Online (Sandbox Code Playgroud)

这些是 SSL 设置:

server:
  port: 8443
  ssl:
    enabled: true
    key-store: 'classpath:keystore.jks'
    key-store-password: 'changeit'
    key-password: 'changeit'
    trust-store: 'classpath:truststore.jks'
    trust-store-password: 'changeit'
    client-auth: need
Run Code Online (Sandbox Code Playgroud)

我想要的是忽略 SSL 或允许我的所有 WSDL 站点。但用这个配置就不行了。我收到以下错误:

http https://localhost:8443/ws/items.wsdl http: error: SSLError: [SSL: CERTIFICATE_VERIFY_FAILED] 证书验证失败 (_ssl.c:645) 在对 URL 执行 GET 请求时:https://localhost:8443/ ws/items.wsdl

我不想使用 ca 签名的证书。(使用签名证书就可以了。)我该怎么做?我有什么选择?

Gan*_*alf -2

删除这个:

.authorizeRequests()
                 .antMatchers("/ws/items.wsdl").permitAll()
Run Code Online (Sandbox Code Playgroud)

Web 配置表示忽略该路径,但您的 http 安全性表示要通过身份验证对该路径发出请求。