From the course: Learning Quarkus

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

RESTful implementation with Quarkus

RESTful implementation with Quarkus

From the course: Learning Quarkus

Start my 1-month free trial

RESTful implementation with Quarkus

- [Instructor] All right, enough explanations. Let's get into some code by implementing RESTful web services with Quarkus. Okay, so the first thing we're going to do is we're going to create another new application. Again, multiple ways to do that, but I'm going to do it with my IDE. So create a new module using Quarkus. I'm going to, once again, put in my group, com.frankmoley.lil.lq, and this one is going to be called the room-service. Now, we've got a few selections here, so we're going to do RESTEasy with JAX-RS and RESTEasy Jackson, and then in Data, we're going to do our Cassandra database. If you don't want to use Cassandra, if you prefer to use Postgres, feel free to do that. Just know that I'm going to be using Cassandra, so it will be a little bit different. Go ahead and select Next and allow that to build. Now, the first thing I'm going to do is I'm going to go back to my cmd-app-nosql, and I'm going to copy…

Contents