Adding the Spring Security dependency

We will start by adding the Spring Security dependencies to pom.xml:

    <dependency> 
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>

The dependencies incorporated are spring-security-web and spring-security-config.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset