2016-06-03 07:05:27 +00:00
[[_spring_security_adapter]]
2016-06-09 13:12:10 +00:00
==== Spring Security Adapter
2016-04-18 19:10:32 +00:00
To secure an application with Spring Security and Keycloak, add this adapter as a dependency to your project.
2017-01-20 08:38:00 +00:00
You then have to provide some extra beans in your Spring Security configuration file and add the Keycloak security filter to your pipeline.
2016-04-18 19:10:32 +00:00
Unlike the other Keycloak Adapters, you should not configure your security in web.xml.
2017-01-20 08:38:00 +00:00
However, keycloak.json is still required.
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
===== Adapter Installation
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
Add Keycloak Spring Security adapter as a dependency to your Maven POM or Gradle build.
2016-04-18 19:10:32 +00:00
2016-08-27 21:10:39 +00:00
[source,xml,subs="attributes+"]
2016-04-18 19:10:32 +00:00
----
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-spring-security-adapter</artifactId>
2017-08-28 12:50:14 +00:00
<version>{project_versionMvn}</version>
2016-04-18 19:10:32 +00:00
</dependency>
2016-08-27 21:10:39 +00:00
----
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
===== Spring Security Configuration
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
The Keycloak Spring Security adapter takes advantage of Spring Security's flexible security configuration syntax.
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
====== Java Configuration
2016-04-18 19:10:32 +00:00
2017-09-05 07:49:24 +00:00
Keycloak provides a KeycloakWebSecurityConfigurerAdapter as a convenient base class for creating a https://docs.spring.io/spring-security/site/docs/4.0.x/apidocs/org/springframework/security/config/annotation/web/WebSecurityConfigurer.html[WebSecurityConfigurer] instance.
2016-04-18 19:10:32 +00:00
The implementation allows customization by overriding methods.
2017-01-20 08:38:00 +00:00
While its use is not required, it greatly simplifies your security context configuration.
2016-04-18 19:10:32 +00:00
2018-02-08 21:09:26 +00:00
[source,java]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2017-06-15 10:57:10 +00:00
@KeycloakConfiguration
2016-04-18 19:10:32 +00:00
public class SecurityConfig extends KeycloakWebSecurityConfigurerAdapter
{
/**
* Registers the KeycloakAuthenticationProvider with the authentication manager.
*/
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.authenticationProvider(keycloakAuthenticationProvider());
}
/**
* Defines the session authentication strategy.
*/
@Bean
@Override
protected SessionAuthenticationStrategy sessionAuthenticationStrategy() {
return new RegisterSessionAuthenticationStrategy(new SessionRegistryImpl());
}
@Override
protected void configure(HttpSecurity http) throws Exception
{
super.configure(http);
http
.authorizeRequests()
.antMatchers("/customers*").hasRole("USER")
.antMatchers("/admin*").hasRole("ADMIN")
.anyRequest().permitAll();
}
}
2017-01-20 08:38:00 +00:00
----
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
You must provide a session authentication strategy bean which should be of type `RegisterSessionAuthenticationStrategy` for public or confidential applications and `NullAuthenticatedSessionStrategy` for bearer-only applications.
2016-04-18 19:10:32 +00:00
Spring Security's `SessionFixationProtectionStrategy` is currently not supported because it changes the session identifier after login via Keycloak.
2017-01-20 08:38:00 +00:00
If the session identifier changes, universal log out will not work because Keycloak is unaware of the new session identifier.
2016-04-18 19:10:32 +00:00
2017-06-15 10:57:10 +00:00
TIP: The `@KeycloakConfiguration` annotation is a metadata annotion that defines all annotations that are needed to integrate
2017-11-16 03:51:42 +00:00
{project_name} in Spring Security. If you have a complexe Spring Security setup you can simply have a look ath the annotations of
2017-06-15 10:57:10 +00:00
the `@KeycloakConfiguration` annotation and create your own custom meta annotation or just use specific Spring annotations
2017-11-16 03:51:42 +00:00
for the {project_name} adapter.
2017-06-15 10:57:10 +00:00
2016-06-09 13:12:10 +00:00
====== XML Configuration
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
While Spring Security's XML namespace simplifies configuration, customizing the configuration can be a bit verbose.
2016-04-18 19:10:32 +00:00
2018-02-08 21:09:26 +00:00
[source,xml]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2016-04-18 19:10:32 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/security
http://www.springframework.org/schema/security/spring-security.xsd">
<context:component-scan base-package="org.keycloak.adapters.springsecurity" />
<security:authentication-manager alias="authenticationManager">
<security:authentication-provider ref="keycloakAuthenticationProvider" />
</security:authentication-manager>
<bean id="adapterDeploymentContext" class="org.keycloak.adapters.springsecurity.AdapterDeploymentContextFactoryBean">
<constructor-arg value="/WEB-INF/keycloak.json" />
</bean>
<bean id="keycloakAuthenticationEntryPoint" class="org.keycloak.adapters.springsecurity.authentication.KeycloakAuthenticationEntryPoint" />
<bean id="keycloakAuthenticationProvider" class="org.keycloak.adapters.springsecurity.authentication.KeycloakAuthenticationProvider" />
<bean id="keycloakPreAuthActionsFilter" class="org.keycloak.adapters.springsecurity.filter.KeycloakPreAuthActionsFilter" />
<bean id="keycloakAuthenticationProcessingFilter" class="org.keycloak.adapters.springsecurity.filter.KeycloakAuthenticationProcessingFilter">
<constructor-arg name="authenticationManager" ref="authenticationManager" />
</bean>
<bean id="keycloakLogoutHandler" class="org.keycloak.adapters.springsecurity.authentication.KeycloakLogoutHandler">
<constructor-arg ref="adapterDeploymentContext" />
</bean>
<bean id="logoutFilter" class="org.springframework.security.web.authentication.logout.LogoutFilter">
<constructor-arg name="logoutSuccessUrl" value="/" />
<constructor-arg name="handlers">
<list>
<ref bean="keycloakLogoutHandler" />
<bean class="org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler" />
</list>
</constructor-arg>
<property name="logoutRequestMatcher">
<bean class="org.springframework.security.web.util.matcher.AntPathRequestMatcher">
<constructor-arg name="pattern" value="/sso/logout**" />
<constructor-arg name="httpMethod" value="GET" />
</bean>
</property>
</bean>
<security:http auto-config="false" entry-point-ref="keycloakAuthenticationEntryPoint">
<security:custom-filter ref="keycloakPreAuthActionsFilter" before="LOGOUT_FILTER" />
<security:custom-filter ref="keycloakAuthenticationProcessingFilter" before="FORM_LOGIN_FILTER" />
<security:intercept-url pattern="/customers**" access="ROLE_USER" />
<security:intercept-url pattern="/admin**" access="ROLE_ADMIN" />
<security:custom-filter ref="logoutFilter" position="LOGOUT_FILTER" />
</security:http>
</beans>
2017-01-20 08:38:00 +00:00
----
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
===== Multi Tenancy
2016-04-18 19:10:32 +00:00
The Keycloak Spring Security adapter also supports multi tenancy.
Instead of injecting `AdapterDeploymentContextFactoryBean` with the path to `keycloak.json` you can inject an implementation of the `KeycloakConfigResolver` interface.
2017-08-28 12:50:14 +00:00
More details on how to implement the `KeycloakConfigResolver` can be found in <<_multi_tenancy,Multi Tenancy>>.
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
===== Naming Security Roles
2016-04-18 19:10:32 +00:00
Spring Security, when using role-based authentication, requires that role names start with `ROLE_`.
2017-01-20 08:38:00 +00:00
For example, an administrator role must be declared in Keycloak as `ROLE_ADMIN` or similar, not simply `ADMIN`.
2016-04-18 19:10:32 +00:00
The class `org.keycloak.adapters.springsecurity.authentication.KeycloakAuthenticationProvider` supports an optional `org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper` which can be used to map roles coming from Keycloak to roles recognized by Spring Security.
Use, for example, `org.springframework.security.core.authority.mapping.SimpleAuthorityMapper` to insert the `ROLE_` prefix and convert the role name to upper case.
2017-01-20 08:38:00 +00:00
The class is part of Spring Security Core module.
2016-04-18 19:10:32 +00:00
2016-06-09 13:12:10 +00:00
===== Client to Client Support
2016-04-18 19:10:32 +00:00
To simplify communication between clients, Keycloak provides an extension of Spring's `RestTemplate` that handles bearer token authentication for you.
To enable this feature your security configuration must add the `KeycloakRestTemplate` bean.
2017-01-20 08:38:00 +00:00
Note that it must be scoped as a prototype to function correctly.
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
For Java configuration:
2018-02-08 21:09:26 +00:00
[source,java]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2016-04-18 19:10:32 +00:00
@Configuration
@EnableWebSecurity
@ComponentScan(basePackageClasses = KeycloakSecurityComponents.class)
public class SecurityConfig extends KeycloakWebSecurityConfigurerAdapter {
...
@Autowired
public KeycloakClientRequestFactory keycloakClientRequestFactory;
@Bean
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public KeycloakRestTemplate keycloakRestTemplate() {
return new KeycloakRestTemplate(keycloakClientRequestFactory);
}
...
}
2017-01-20 08:38:00 +00:00
----
2016-04-18 19:10:32 +00:00
2017-01-20 08:38:00 +00:00
For XML configuration:
2018-02-08 21:09:26 +00:00
[source,xml]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2016-04-18 19:10:32 +00:00
<bean id="keycloakRestTemplate" class="org.keycloak.adapters.springsecurity.client.KeycloakRestTemplate" scope="prototype">
<constructor-arg name="factory" ref="keycloakClientRequestFactory" />
</bean>
2017-01-20 08:38:00 +00:00
----
2016-04-18 19:10:32 +00:00
Your application code can then use `KeycloakRestTemplate` any time it needs to make a call to another client.
2017-01-20 08:38:00 +00:00
For example:
2018-02-08 21:09:26 +00:00
[source,java]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2016-04-18 19:10:32 +00:00
@Service
public class RemoteProductService implements ProductService {
@Autowired
private KeycloakRestTemplate template;
private String endpoint;
@Override
public List<String> getProducts() {
ResponseEntity<String[]> response = template.getForEntity(endpoint, String[].class);
return Arrays.asList(response.getBody());
}
}
2017-01-20 08:38:00 +00:00
----
===== Spring Boot Integration
The Spring Boot and the Spring Security adapters can be combined.
2016-04-18 19:10:32 +00:00
2017-05-22 08:54:16 +00:00
If you are using the Keycloak Spring Boot Starter to make use of the Spring Security adapter you just need to add the Spring Security starter :
2018-02-08 21:09:26 +00:00
[source,xml]
2017-05-22 08:54:16 +00:00
----
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
----
2017-01-20 08:38:00 +00:00
====== Using Spring Boot Configuration
By Default, the Spring Security Adapter looks for a `keycloak.json` configuration file. You can make sure it looks at the configuration provided by the Spring Boot Adapter by adding this bean :
2018-02-08 21:09:26 +00:00
[source,java]
2017-01-20 08:38:00 +00:00
----
@Bean
public KeycloakConfigResolver KeycloakConfigResolver() {
return new KeycloakSpringBootConfigResolver();
}
----
2018-11-30 10:05:10 +00:00
====== Avoid double bean registration
2016-04-18 19:10:32 +00:00
Spring Boot attempts to eagerly register filter beans with the web application context.
2018-04-06 06:09:02 +00:00
Therefore, when running the Keycloak Spring Security adapter in a Spring Boot environment, it may be necessary to add ``FilterRegistrationBean``s to your security configuration to prevent the Keycloak filters from being registered twice.
2016-04-18 19:10:32 +00:00
2018-11-30 10:11:51 +00:00
Spring Boot 2.1 also disables `spring.main.allow-bean-definition-overriding` by default. This can mean that an `BeanDefinitionOverrideException` will be encountered if a `Configuration` class extending `KeycloakWebSecurityConfigurerAdapter` registers a bean that is already detected by a `@ComponentScan`. This can be avoided by overriding the registration to use the Boot-specific `@ConditionalOnMissingBean` annotation, as with `HttpSessionManager` below.
2016-04-18 19:10:32 +00:00
2018-02-08 21:09:26 +00:00
[source,java]
2016-04-18 19:10:32 +00:00
----
2017-01-20 08:38:00 +00:00
2016-04-18 19:10:32 +00:00
@Configuration
@EnableWebSecurity
public class SecurityConfig extends KeycloakWebSecurityConfigurerAdapter
{
...
@Bean
public FilterRegistrationBean keycloakAuthenticationProcessingFilterRegistrationBean(
KeycloakAuthenticationProcessingFilter filter) {
FilterRegistrationBean registrationBean = new FilterRegistrationBean(filter);
registrationBean.setEnabled(false);
return registrationBean;
}
@Bean
public FilterRegistrationBean keycloakPreAuthActionsFilterRegistrationBean(
KeycloakPreAuthActionsFilter filter) {
FilterRegistrationBean registrationBean = new FilterRegistrationBean(filter);
registrationBean.setEnabled(false);
return registrationBean;
}
2018-04-06 06:09:02 +00:00
@Bean
public FilterRegistrationBean keycloakAuthenticatedActionsFilterBean(
KeycloakAuthenticatedActionsFilter filter) {
FilterRegistrationBean registrationBean = new FilterRegistrationBean(filter);
registrationBean.setEnabled(false);
return registrationBean;
}
@Bean
public FilterRegistrationBean keycloakSecurityContextRequestFilterBean(
KeycloakSecurityContextRequestFilter filter) {
FilterRegistrationBean registrationBean = new FilterRegistrationBean(filter);
registrationBean.setEnabled(false);
return registrationBean;
}
2018-11-30 10:05:10 +00:00
@Bean
@Override
@ConditionalOnMissingBean(HttpSessionManager.class)
protected HttpSessionManager httpSessionManager() {
return new HttpSessionManager();
}
2016-04-18 19:10:32 +00:00
...
}
2017-01-20 08:38:00 +00:00
----