Build a rest service from the command line, as simple as “every request has a response.”

Thinking Out Code
2 min readMar 28, 2022

--

Following with Handmade Series with Java, this is the 3rd chapter. I’ll make a rest service, as always, step by step, without IDEs.

I’ll use the Spark library to getting a “pong” to every “ping” request.

I declare a simple class called PingPongGame with main method inside.

Inside of the main method, call a static method named get , provided by Spark library, that contains:

  • A url path /ping.
  • GET verb http.
  • Receiving a req and res object from request.
  • Which finally return a response, a simple string “pong”.

I add the current import from Spark library spark.Spark.get, getting the code above:

Before executing it, download the spark library, from the maven repository.

After downloading it, place it inside PingPongGame class folder, it runs the next instruction through the command line

Cause Spark library by itself can’t run this instance, it depends on others libraries. The required jar libraries list:

  • slf4j-api
  • spark-core
  • javax.servlet-api
  • jetty-server
  • jetty-util
  • jetty-http
  • jetty-io
  • log4j-slf4j-impl
  • log4j-api
  • log4j-core

After downloading them, run the long command line above:

So, at this point, I need to verify if the rest service is “up & running” by executing this command:

Again, simple and effective, perhaps not too simple cause of the amount of added libraries, but still isn’t to worry taking in count it made without IDEs.

That’s all!

  1. Pong to my ping needed.
  2. Creating a standar rest services.
  3. Using a method of a knowing library.
  4. Add it and test it.
  5. Problem happened(missing libraries).
  6. Adding missing libraries.
  7. Problem fixed.
  8. I got my pong trought rest service.

Command and options dictionary:

  • java run .class and .java files.
  • -cpindicate compiled folders directory(classpath).
  • curl command to execute transfer to or from a server.

Tech stack

Repo

https://github.com/JesusIgnacio/every-ping-has-a-pong

Bonus track

Spark-java is a “microframework” as springboot but only based on functional programming with a simple implementation, I invited you to take in count in your read list the next article, to a deeper understanding.

Web microservices development in Java that will Spark joy

--

--

Thinking Out Code

Software engineer sharing stories & ideas on performant coding development, dev tools’ effective use’s & software development’s life experiences.🧠&♥ involved.