+1 vote
in Service Discovery by
How do you implement a Spring Security in a Spring Boot Application?

1 Answer

0 votes
by

Add spring-boot-starter-security in the file pom.xml.

Create a Spring config class that will override the required method while extending the WebSecurityConfigurerAdapter to achieve security in the application. 

...