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

1 Answer

0 votes

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. 

by
...