Answers for "which maven dependency required for configuring security with spring boot"

3

dependency for spring security

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.security</groupId>
			<artifactId>spring-security-test</artifactId>
			<scope>test</scope>
		</dependency>
Posted by: Guest on July-02-2020

Code answers related to "which maven dependency required for configuring security with spring boot"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language