InterviewSolution
Saved Bookmarks
| 1. |
How To Implement Security For Spring Boot Application ? |
|
Answer» Add SPRING SECURITY starter to the boot application <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> Add spring security starter to the boot application <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> |
|