Back to Dropwizard

Dropwizard Example, Step by Step

docs/source/manual/example.rst

5.0.11.7 KB
Original Source

.. _man-example:

################################ Dropwizard Example, Step by Step ################################

.. highlight:: text

.. rubric:: The dropwizard-example module provides you with a working Dropwizard Example Application <https://github.com/dropwizard/dropwizard/tree/master/dropwizard-example>_.

  • Preconditions

    • Make sure you have Maven_ installed
    • Make sure JAVA_HOME points at JDK 17
    • Make sure you have curl

.. _Maven: https://maven.apache.org/

  • Preparations to start the Dropwizard Example Application

    • Open a terminal / cmd
    • Navigate to the project folder of the Dropwizard Example Application
    • mvn clean install
    • java -jar target/dropwizard-example-5.0.0-SNAPSHOT.jar db migrate example.yml
    • The statement above ran the liquibase migration in /src/main/resources/migrations.xml, creating the table schema
  • Starting the Dropwizard Example Application

    • You can now start the Dropwizard Example Application by running java -jar target/dropwizard-example-5.0.0-SNAPSHOT.jar server example.yml
    • Alternatively, you can run the Dropwizard Example Application in your IDE: com.example.helloworld.HelloWorldApplication server example.yml
  • Working with the Dropwizard Example Application

    • Insert a new person: curl -H "Content-Type: application/json" -d '{"fullName":"John Doe", "jobTitle" : "Chief Wizard" }' http://localhost:8080/people
    • Retrieve that person: curl http://localhost:8080/people/1
    • View that person in a freemarker template: curl or open in a browser http://localhost:8080/people/1/view_freemarker
    • View that person in a mustache template: curl or open in a browser http://localhost:8080/people/1/view_mustache