I'm able to run Dropwizard application on https on my local machine trough this commands.
mvn package java -jar target/dropwizard-example-1.2.0-SNAPSHOT.jar db migrate example.yml java -jar target/dropwizard-example-1.2.0-SNAPSHOT.jar server example.yml
Here is the example I am following dropwizard-example on github
Once we create package of Dropwizard application with Debian. it converts into single jar file.
Q1: How can I run the command ends with server example.yml? because this file is not going to found?
Q2: How can I run jar file of dropwizard application packaged through debian on windows machine?
Q3: On local machine it runs sucessfully on https port. How can it will be achieve after packaged through debian?