Skip to content
Daniel Karlsson edited this page Sep 19, 2013 · 6 revisions

A config.xml file needs to be added to /SnomedCTExpressionRepository/src/test/resources. This file contains server port, database login information and path to SNOMED CT OWL file. An example is given below:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
	<database>
		<url>jdbc:postgresql://127.0.0.1/termbind</url>
		<username>termbinduser</username>
		<password>the_password</password>
	</database>
	<owlapi>
		<url>file:///path/to/snomed.owl</url>
	</owlapi>
	<server>
		<port>8183</port>
	</server>
</configuration>

First, another project needs to be executed and two other projects needs to be installed in your local Maven repository: SnomedCTDatabase, SnomedCTParser and SnomedCTExpressionRepository. To install using Maven go to the root folder of the project:

mvn install

and to execute:

mvn exec:exec

The server REST interface is available on localhost, port 8183 (unless any error or change of port number).

Clone this wiki locally