2012年5月14日月曜日

groovyとMongoHQのREST APIで、コレクション内にドキュメントを作成する

groovyとMongoHQのREST APIで、コレクション内にドキュメントを作成するには、以下のコードを実行します。
@Grab(group='org.apache.httpcomponents', module='httpclient', version='4.1.3')
import org.apache.http.client.methods.*
import org.apache.http.impl.client.*
import org.apache.http.entity.*
import groovy.json.*

def _apikey = "your-key"
def base = "https://api.mongohq.com/databases"
def db = "mydb"
def col = "employee"
def json = new JsonBuilder()
json (
  document:[
    employeeno:"1234",
    name:"test1"
  ],
  safe:true
)

def httpclient = new DefaultHttpClient()
def method = new HttpPost("${base}/${db}/collections/${col}/documents?_apikey=${_apikey}")
method.setHeader("Content-Type", "application/json")
method.setEntity(new StringEntity(json.toString()))
response = httpclient.execute(method)

println response.getStatusLine().getStatusCode()
println response.getEntity().getContent().text

動作環境
groovy 1.8.6

関連情報
groovyとMongoDBのまとめ

0 件のコメント:

コメントを投稿