/driver/src/examples/tour/QuickTourAdmin.java

http://github.com/mongodb/mongo-java-driver · Java · 116 lines · 54 code · 23 blank · 39 comment · 6 complexity · fb6720adbce157ba88a068d58520c4b2 MD5 · raw file

  1. /*
  2. * Copyright 2015 MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package tour;
  17. import com.mongodb.MongoClient;
  18. import com.mongodb.MongoClientURI;
  19. import com.mongodb.client.MongoCollection;
  20. import com.mongodb.client.MongoDatabase;
  21. import com.mongodb.client.model.CreateCollectionOptions;
  22. import com.mongodb.client.model.Indexes;
  23. import com.mongodb.client.model.TextSearchOptions;
  24. import org.bson.Document;
  25. import org.bson.conversions.Bson;
  26. import static com.mongodb.client.model.Filters.text;
  27. /**
  28. * The QuickTourAdmin code example see: https://mongodb.github.io/mongo-java-driver/3.0/getting-started
  29. */
  30. public class QuickTourAdmin {
  31. /**
  32. * Run this main method to see the output of this quick example.
  33. *
  34. * @param args takes an optional single argument for the connection string
  35. */
  36. public static void main(final String[] args) {
  37. MongoClient mongoClient;
  38. if (args.length == 0) {
  39. // connect to the local database server
  40. mongoClient = new MongoClient();
  41. } else {
  42. mongoClient = new MongoClient(new MongoClientURI(args[0]));
  43. }
  44. // get handle to "mydb" database
  45. MongoDatabase database = mongoClient.getDatabase("mydb");
  46. database.drop();
  47. // get a handle to the "test" collection
  48. MongoCollection<Document> collection = database.getCollection("test");
  49. // drop all the data in it
  50. collection.drop();
  51. // getting a list of databases
  52. for (String name: mongoClient.listDatabaseNames()) {
  53. System.out.println(name);
  54. }
  55. // drop a database
  56. mongoClient.getDatabase("databaseToBeDropped").drop();
  57. // create a collection
  58. database.createCollection("cappedCollection", new CreateCollectionOptions().capped(true).sizeInBytes(0x100000));
  59. for (String name : database.listCollectionNames()) {
  60. System.out.println(name);
  61. }
  62. // drop a collection:
  63. collection.drop();
  64. // create an ascending index on the "i" field
  65. collection.createIndex(Indexes.ascending("i"));
  66. // list the indexes on the collection
  67. for (final Document index : collection.listIndexes()) {
  68. System.out.println(index.toJson());
  69. }
  70. // create a text index on the "content" field
  71. collection.createIndex(Indexes.text("content"));
  72. collection.insertOne(new Document("_id", 0).append("content", "textual content"));
  73. collection.insertOne(new Document("_id", 1).append("content", "additional content"));
  74. collection.insertOne(new Document("_id", 2).append("content", "irrelevant content"));
  75. // Find using the text index
  76. long matchCount = collection.count(text("textual content -irrelevant"));
  77. System.out.println("Text search matches: " + matchCount);
  78. // Find using the $language operator
  79. Bson textSearch = text("textual content -irrelevant", new TextSearchOptions().language("english"));
  80. matchCount = collection.count(textSearch);
  81. System.out.println("Text search matches (english): " + matchCount);
  82. // Find the highest scoring match
  83. Document projection = new Document("score", new Document("$meta", "textScore"));
  84. Document myDoc = collection.find(textSearch).projection(projection).first();
  85. System.out.println("Highest scoring document: " + myDoc.toJson());
  86. // Run a command
  87. Document buildInfo = database.runCommand(new Document("buildInfo", 1));
  88. System.out.println(buildInfo);
  89. // release resources
  90. database.drop();
  91. mongoClient.close();
  92. }
  93. }