MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

nieautoryzowany typ blokady db:-1

Napisałem proste powtórzenie, ale nie miałem problemu z jego pomyślnym uruchomieniem.

public static void main(String[] args) throws UnknownHostException, MongoException {
    Mongo mongo = new Mongo();
    DB db = mongo.getDB("test");
    boolean auth = db.authenticate("scott", "scott".toCharArray());
    DBCollection coll = db.getCollection("myWords");
    DBObject dbObj = (DBObject) JSON.parse("{ \"_id\" : 1.0 , \"words\" : [ \"a\" , \"b\" , \"c\"] , \"score\" : 1.1 , \"data\" : \"foo\"}");
    coll.insert(dbObj);
    System.out.print(coll.findOne().toString());

    Morphia morphia = new Morphia();
    Datastore datastore = morphia.createDatastore(mongo, "test");
    Word w = datastore.find(Word.class).get();
    System.out.print(w);

}

@Entity("myWords")
static class Word {
    @Id Double id;
    ArrayList<String> words = new ArrayList<String>();
    Double score;
    String data;

    @Override
    public String toString() {
        return this.id.toString();
    }


}

Co zaowocowało tym:

{ "_id" : 1.0 , "words" : [ "a" , "b" , "c"] , "score" : 1.1 , "data" : "foo"} 
...
1.0

Co wydaje się słuszne. Czy możesz uruchomić ten kod, ale podmień swoją bazę danych/użytkownika/hasło?



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Czy istnieje sposób na tworzenie mongodb takich jak ciągi _id bez mongodb?

  2. Jak zaktualizować wiele obiektów tablicy w mongodb

  3. Konwertuj z LinkedHashMap na Json String

  4. mangusta 'findById' zwraca wartość null z prawidłowym identyfikatorem

  5. MongoDB InsertBatch JObject — błąd serializacji