Project

General

Profile

Download (1.11 KB) Statistics
| Branch: | Tag: | Revision:
1
UTIS - README
2
====================
3

    
4

    
5

    
6
Installation
7
-----------------------------
8

    
9
At the example of jetty8 in Debian like systems:
10

    
11
**Requirements**
12
You need to run utis with an Oracle JVM 1.7
13

    
14
1. place the eubon-utis.war in /var/lib/jetty8/webapps/
15
2. create the folder for local stores: 
16
   sudo mkdir /var/lib/utis
17
   sudo chown -R jetty:adm  /var/lib/utis
18
3. Start jetty
19
   /etc/init.d/jetty8 start   
20

    
21

    
22
The URIs UTIS is listening at
23
------------------------------
24

    
25
utis controllers:
26
* http://127.0.0.1:8080/eubon-utis/
27
* http://127.0.0.1:8080/eubon-utis/search.html
28
* http://127.0.0.1:8080/eubon-utis/capabilities.html
29

    
30
swagger api-doc REST service at:
31
* http://127.0.0.1:8080/eubon-utis/api-docs.json
32
* http://127.0.0.1:8080/eubon-utis/api-docs/default/utis-controller.json
33

    
34
swagger ui at:
35
* http://127.0.0.1:8080/eubon-utis/doc/
36

    
37
Developer Notes
38
--------------------
39

    
40
## Using swagger
41

    
42
* https://github.com/martypitt/swagger-springmvc
43
* https://github.com/adrianbk/swagger-springmvc-demo/tree/master/swagger-ui
44

    
45

    
46
## On Spring MVC
47
Content Negotiation Using Spring MVC
48
* http://java.dzone.com/articles/content-negotiation-using
(2-2/3)