Skip to content

Latest commit

 

History

History
95 lines (82 loc) · 3.81 KB

README.md

File metadata and controls

95 lines (82 loc) · 3.81 KB

Cloudant/CouchDB Auto-Configuration for Spring Boot

Build Status Coverage Status Maven Central

A convienient way to use the official Cloudant client with Spring Boot.

Installing

Maven

<dependency>
  <groupId>com.clianz</groupId>
  <artifactId>cloudant-spring-boot-starter</artifactId>
  <version>0.9.5</version>
</dependency>

Gradle

repositories {
	mavenCentral()
}
compile('com.clianz:cloudant-spring-boot-starter:0.9.5')

Usage

Inject a database:

@Bean
public Database mydb(CloudantClient cloudant) {
	return cloudant.database("mydb", true);
}

Then start using it:

@Autowired
Database mydb;
mydb.save(data);

Using the Cloudant client directly

Alternatively, you may inject the client for fine-grain controls:

@Autowired
CloudantClient cloudant
Database db = cloudant.database("mydb", true);

Configuration

Spring Boot Configuration

Configurations can be placed in the application.properties (or yml) as usual. Either username/password or a URL must be specified.

##### Mandatory: Provide URL or username/password  #####
cloudant.username=myUserName              #Username as assigned by Cloudant.
cloudant.password=myPasswd                #Password as assigned by Cloudant.
cloudant.url=http...                      #Url to CouchDB or a Cloudant instance. Defaults to official Cloudant server.

##### Optional configs #####
cloudant.account=myAccountName            #Defaults to username if left blank.
cloudant.proxyURL=http...                 #URL to proxy server.
cloudant.proxyUser=myUserName             #Proxy username.
cloudant.proxyPassword=myPasswd           #Proxy password.
cloudant.connectTimeout=300               #Connect timeout in seconds. Default to 300 sec (5 minutes).
cloudant.readTimeout=300                  #Read timeout in seconds. Default to 300 sec (5 minutes).
cloudant.maxConnections=6                 #Default to 6.
cloudant.disableSSLAuthentication=false   #Defaults to false.

Bluemix (CloudFoundry) Configuration

When using Bluemix (CloudFoundry), the client will automatically use the Cloudant service binded to the app instead of the Spring configuration.

Bluemix's VCAP_SERVICES environment variable containing a Cloudant service will always take precedence over any Spring configuration. This is useful - Local development will use the Spring configuration properties, and promoting it to Bluemix will automatically use the environment configured instance. If Spring's configuration is desired, just remove the Cloudant service binding from your Bluemix app.

CouchDB Compatibility

Since Cloudant API is compatible with Apache CouchDB's API, this client can be used with a regular CouchDB instance. This is useful for things like local development or if you want to host your own service.

To connect to CouchDB on localhost for example, just set the url:

cloudant.url=http://localhost:5984

Example

Example app is available at https://github.com/icha024/cloudant-spring-boot-starter-example

Requirements

License

Version 2.0 of the Apache License.