hanCodeHub
3/14/2020 - 3:12 AM

pom.xml dependencies

Adding dependencies to pom.xml and turning on auto-import in IntelliJ will automatically download dependencies.

<!-- main spring dependency for RESTful web services -->
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<!-- for monitoring the health of application -->
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

<!-- Java Persistence API for database -->
<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<!-- JSON Hypertext Application Language for resource linking -->
<dependency>
	<groupId>org.springframework.data</groupId>
	<artifactId>spring-data-rest-hal-browser</artifactId>
</dependency>