May 2018
Intermediate to advanced
310 pages
6h 18m
English
To be able to authenticate and authorize users, we will add basic authentication implementation. By default, Spring will handle /login as a web page and that is something we don't want for our REST API. Create a new class inside the security package and call it WebSecurityEntryPoint.
This class must implement the AuthenticationEntryPoint interface whose purpose is to commence an authentication scheme. The implementation will look like this:
package com.journaler.api.security import org.springframework.security.core.AuthenticationException import org.springframework.security.web.AuthenticationEntryPoint import org.springframework.stereotype.Component import javax.servlet.http.HttpServletRequest ...
Read now
Unlock full access