Friday, December 3, 2021

Minimum maven dependencies for spring security

 We should add those below dependencies to pom.xml-

<dependency>

            <groupId>org.springframework.security</groupId>

            <artifactId>spring-security-web</artifactId>

             <version>${springsecurity.version}</version>

</dependency>

<dependency>

            <groupId>org.springframework.security</groupId>

            <artifactId>spring-security-config</artifactId>

             <version>${springsecurity.version}</version>

</dependency>


No comments:

Post a Comment

Element of a good table (Ref: Database design mere mortals by Michael J. Hernandez)

  Elements of the Ideal Table: It represents a single subject, which can be an object or event that reduces the risk of potential data integ...