我正在使用' jsf-api-2.1.2.jar'使用JSF构建Web应用程序的文件,我创建了一个ExternalContext对象。我是usimhg该对象访问' responseReset()',' setResponseContentType(String)'和setResponseContentLength(int)但它显示这些方法不存在。我检查过' ExternalContext.class'文件,并看到那些方法存在于该类,但我不知道为什么它将它们显示为undefine方法。 我在Jboss 5.1服务器上运行这个项目。 有人可以帮我这个。提前谢谢!
答案 0 :(得分:0)
您可以使用此代码
const MongoClient = require('mongodb').MongoClient;
//make sure to check connection string is correct here, since this depends on the whether you are running standalone, replica, sharded cluster
const uri = "mongodb+srv://<userName>:<password>@testcluster1-dbdq3.mongodb.net/test?retryWrites=true&w=majority";
MongoClient.connect(uri, { useNewUrlParser: true }, function(err, client) {
if (err) {
//error
} else {
var collection = client.db('test').collection('devices');
//client.close() should be called after you are done performing actions such as collection.update, etc.
}
});
一切都很好。