A friendly guide to creating JAX-RS Jersey Java EE RESTful web applications in IntelliJ IDEA Ultimate Edition
Ensure you have an application server installed and configured in IntelliJ IDEA (tested with Tomcat 9.0.26 and Glassfish 5.0.0)
The OSRM docker quick start provides a great explanation on how to set up the container: https://hub.docker.com/r/osrm/osrm-backend/
Yet - for Docker on Windows minor changes were necessary for me (otherwise I'd get "File not found" or "Permission" errors).
This is how it worked for me:
class CheesePizza implements Pizza { | |
@Override | |
public void prepare() { | |
System.out.println("Préparation de la pizza au fromage"); | |
} | |
@Override | |
public void bake() { | |
System.out.println("Cuisson de la pizza au fromage"); |