Member-only story
Creating REST API with Java Spring Boot + Oracle Database + JBoss Server #Part1 β Learning Java
INTRODUCTION
Hello, everyone! Welcome back to my article π. In this article, I want to share a short tutorial on creating a Java REST API using the Spring framework, specifically Spring Boot. Spring is one of the Java frameworks, and one of the advantages of Spring Boot is its easy and fast configuration. For those who are new to Spring, I highly recommend starting with Spring Boot.
This article will be divided into two parts: #Part1 to configure the database and connection between Spring Boot, JBoss Server, and the Oracle Database. Then, #Part2 will cover coding the REST API.
PREREQUISITE
In this tutorial, I use the STS (Spring Tool Suite) application. To create a Spring Boot project, one easy way is to generate a starter project directly through the website https://start.spring.io/. After generating it, you can import it directly into the application.
POM.XML
In short, POM (Project Object Model) is an XML file that contains project information and configurations used by Maven to build aβ¦