Skip to content

Latest commit

 

History

History

spring-auth0-core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

spring-security-auth0

Build and install the project using the maven command:

mvn install

Add the dependencies to your existing maven project

<dependency>
	<groupId>sib.calipho</groupId>
	<artifactId>spring-auth0-core</artifactId>
	<version>0.0.1</version>
</dependency>

Include in your existing Spring project the Auth0 configuration (you will also need to configure the spring security filter springSecurityFilterChain in your web.xml)

	<import resource="classpath:auth0-security-context.xml" /> 

This configuration will secure URL starting with /secured/* . Feel free to modify it according to your needs.

Set the Auth0 properties in a property file read from spring property placeholder.

auth0.clientId=YOUR_CLIENT_ID
auth0.clientSecret=YOUR_CLIENT_SECRET

That's it! You should be able to run the spring security with Auth0 and access the Auth0UserDetails as principal in your SecurityContext.

The username returned by UserDetails is the email if it exists, otherwise it is the user_id. The roles associated to a user are the ones set in the profile.roles attribute by auth0 (one can set a custom rule). If the attribute roles is not set, the USER_ROLE role will be given by default. The other Auth0 attributes can be accessed via the method getAuth0Attribute. Example getAuth0Attribute("picture"), getAuth0Attribute("gender") ... Don't hesitate to change this behaviour associated to your needs.

Advanced configurations

Edit the auth0-security-context.xml according to your needs.