July 2018
Intermediate to advanced
268 pages
7h 36m
English
We will be creating a Maven project using the IntelliJ IDE. Add the following dependencies and build setup in your pom.xml file:
<groupId>com.packtpub.book.ch04.springsecurity</groupId><artifactId>jetty-jaas-authentication</artifactId><version>1.0-SNAPSHOT</version><packaging>war</packaging><properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <failOnMissingWebXml>false</failOnMissingWebXml></properties><dependencies> <!--Spring Security Dependencies--> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>5.0.4.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> ...
Read now
Unlock full access