@Grab(group='com.gmongo', module='gmongo', version='0.7')
import com.mongodb.*
import com.gmongo.*
mongo = new GMongo("localhost", 27017)
db = mongo.getDB("local")
println db.authenticate("test1", "test1_password".toCharArray())
// パスワード変更(password変更だけどaddUser)
db.addUser("test1", "new_test1_password".toCharArray())
import com.mongodb.*
import com.gmongo.*
mongo = new GMongo("localhost", 27017)
db = mongo.getDB("local")
println db.authenticate("test1", "test1_password".toCharArray())
// パスワード変更(password変更だけどaddUser)
db.addUser("test1", "new_test1_password".toCharArray())
動作環境
Groovy 1.8.0, JDK6 Update22, gmongo 0.7, MongoDB 1.8.2
関連情報
gmongoのウェブサイト
https://github.com/poiati/gmongo
groovyとMongoDBのまとめ
0 件のコメント:
コメントを投稿