DefaultWebSecurityConfig for vs code extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company.service; | |
import java.util.Arrays; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.http.HttpMethod; | |
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; | |
import org.springframework.security.config.annotation.web.builders.HttpSecurity; | |
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; | |
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; | |
import org.springframework.web.cors.CorsConfiguration; | |
import org.springframework.web.cors.CorsConfigurationSource; | |
import org.springframework.web.cors.UrlBasedCorsConfigurationSource; | |
@Configuration("kieServerSecurity") | |
@EnableWebSecurity | |
public class DefaultWebSecurityConfig extends WebSecurityConfigurerAdapter { | |
@Override | |
protected void configure(HttpSecurity http) throws Exception { | |
http.cors().and().csrf().disable().authorizeRequests().antMatchers("/rest/*").authenticated().and().httpBasic() | |
.and().headers().frameOptions().disable(); | |
} | |
@Autowired | |
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { | |
auth.inMemoryAuthentication().withUser("user").password("user").roles("kie-server"); | |
auth.inMemoryAuthentication().withUser("wbadmin").password("wbadmin").roles("admin"); | |
auth.inMemoryAuthentication().withUser("kieserver").password("kieserver1!").roles("kie-server"); | |
} | |
@Bean | |
CorsConfigurationSource corsConfigurationSource() { | |
UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); | |
CorsConfiguration corsConfiguration = new CorsConfiguration(); | |
corsConfiguration.setAllowedOrigins(Arrays.asList("*")); | |
corsConfiguration.setAllowedMethods(Arrays.asList(HttpMethod.GET.name(), HttpMethod.HEAD.name(), | |
HttpMethod.POST.name(), HttpMethod.DELETE.name(), HttpMethod.PUT.name())); | |
corsConfiguration.applyPermitDefaultValues(); | |
source.registerCorsConfiguration("/**", corsConfiguration); | |
return source; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment