Spring Boot Starter security dependencies

The spring-boot-starter-security dependency brings in three important Spring Security dependencies:

  • spring-security-core: Implements the core features of Spring Security
  • spring-security-config: Provides the Spring Security namespace
  • spring-security-web: Provides filters and other features needed to secure web applications

Here are the dependencies that are automatically included:

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
</dependency>
..................Content has been hidden....................

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