You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
ml-app-deployer is a Java library that provides two capabilities:
4
6
@@ -9,13 +11,13 @@ If you're just looking for a Java library for interacting with the Management RE
9
11
10
12
Javadocs for ml-app-deployer are [here](http://rjrudin.github.io/marklogic-java/javadocs/ml-app-deployer/index.html).
11
13
12
-
## What does it depend on?
14
+
###What does ml-app-deployer depend on?
13
15
14
16
ml-app-deployer depends on MarkLogic 8 and Java 1.7+.
15
17
16
18
Under the hood, it depends on Spring's [RestTemplate](http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/client/RestTemplate.html) for interacting with the Management REST API. It also depends on [ml-javaclient-util](https://github.com/rjrudin/ml-javaclient-util) for loading modules, which is done via the MarkLogic Client REST API.
17
19
18
-
## How do I start using the client library?
20
+
###How do I start using the client library?
19
21
20
22
The general pattern for using the management client library is:
21
23
@@ -30,7 +32,7 @@ Here's a brief example of what that looks like:
30
32
DatabaseManager dbMgr = new DatabaseManager(client);
The main concept behind the deployer library is invoke a series of commands, where each command looks for one or more configuration files in a specific directory structure and then uses a Manager class in the client library to apply those configuration files as part of deploying an application.
0 commit comments