July 2018
Intermediate to advanced
268 pages
7h 36m
English
The main dependencies to be included in the Spring Boot project's pom.xml file are as shown in the following code snippet:
<!--Spring Boot--><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId></dependency><!--OAuth--><dependency> <groupId>org.springframework.security.oauth</groupId> <artifactId>spring-security-oauth2</artifactId> <version>2.3.2.RELEASE</version></dependency><!--JWT--><dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-jwt</artifactId> <version>1.0.9.RELEASE</version></dependency>
Read now
Unlock full access