This tutorial will introduce you to OpenMRS SDK (Server Development Kit). It assumes that you have basic understanding of OpenMRS modular architecture (you can learn about it reading Technical Overview).
...
If you want to enable remote debugging by default when running the server,
specify the port number here (e.g. 1044). Leave blank to disable debugging.
(Do not do this on a production server) (default: 'no debugging'):
Type default value '1044' and push enter. Specifying debug port is essential to setup remote debugging configuration. You will be asked what database you want to use:
...
Code Block |
---|
mvn openmrs-sdk:run -DserverId=webservices-dev |
And run remote debugging configuration from IDE Remote debugging has important advantage over running server from IDE - you can debug multiple modules at the same time, and run debugging only when you need to debug.
Alternatively, you can create direct Maven configuration in IDE to run:
Code Block |
---|
mvn openmrs-sdk:run -DserverId=webservices.dev -Dfork=false |
...
To sum up, our openmrs-distro.properties file will look like this:
name= OWA development
version= 1.0
war.openmrs= 2.0
omod.owa=1.6.2
omod.webservices.rest=2.17-SNAPSHOT
SDK automatically assumes that modules Maven Group ID is 'org.openmrs.module', but you can declare another Group ID
...