首页 新闻 会员 周边

关于java访问mongodb的问题

0
悬赏园豆:100 [待解决问题]

我的mongodb 已经设置了安全性也就是密码,按照逻辑来说以前的连接代码应该会报错啊,为什么还是正常访问 我的java代码如下:
无密码连接:

import com.mongodb.MongoClient;
import com.mongodb.client.MongoDatabase;

public class MongoDBJDBC{
public static void main( String args[] ){
try{
// 连接到 mongodb 服务
MongoClient mongoClient = new MongoClient( "localhost" , 27017 );

     // 连接到数据库
     MongoDatabase mongoDatabase = mongoClient.getDatabase("mycol");  
   System.out.println("Connect to database successfully");
    
  }catch(Exception e){
    System.err.println( e.getClass().getName() + ": " + e.getMessage() );
 }

}
}

密码连接:

import java.util.ArrayList;
import java.util.List;
import com.mongodb.MongoClient;
import com.mongodb.MongoCredential;
import com.mongodb.ServerAddress;
import com.mongodb.client.MongoDatabase;

public class MongoDBJDBC {
public static void main(String[] args){
try {
//连接到MongoDB服务 如果是远程连接可以替换“localhost”为服务器所在IP地址
//ServerAddress()两个参数分别为 服务器地址 和 端口
ServerAddress serverAddress = new ServerAddress("localhost",27017);
List<ServerAddress> addrs = new ArrayList<ServerAddress>();
addrs.add(serverAddress);

        //MongoCredential.createScramSha1Credential()三个参数分别为 用户名 数据库名称 密码  
        MongoCredential credential = MongoCredential.createScramSha1Credential("username", "databaseName", "password".toCharArray());  
        List<MongoCredential> credentials = new ArrayList<MongoCredential>();  
        credentials.add(credential);  
          
        //通过连接认证获取MongoDB连接  
        MongoClient mongoClient = new MongoClient(addrs,credentials);  
          
        //连接到数据库  
        MongoDatabase mongoDatabase = mongoClient.getDatabase("databaseName");  
        System.out.println("Connect to database successfully");  
    } catch (Exception e) {  
        System.err.println( e.getClass().getName() + ": " + e.getMessage() );  
    }  
}  

}

小白333123的主页 小白333123 | 初学一级 | 园豆:102
提问于:2019-07-07 13:26
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册