Adding Spring Security dependency

We will start with 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 added in 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