MongoDB は、私たちがこれまで慣れ親しんだリレーショナル データベース (MySQL、Oracle) とは異なり、必要なスケーラビリティと柔軟性を備えたドキュメント データベースです。必須のクエリとインデックス。
MongoDB は、柔軟な JSON のようなドキュメントにデータを保存します。つまり、ドキュメントのフィールドはドキュメントごとに異なり、データ構造は時間の経過とともに変化する可能性があります。ドキュメント モデルはアプリケーション コード内のオブジェクトにマップされ、データの操作が容易になります。 MongoDB は本質的に分散データベースであるため、高可用性、スケールアウト、地理的分散が組み込まれており、使いやすくなっています。さらに、MongoDB は無料のオープンソースです。
MongoDB 公式 Web サイトを開きます
MSI バージョン (インストール バージョン) をダウンロードします
ダウンロードするときは、カスタムを選択します
インストールするときは、インストール用のビジュアル プラグインをチェックしないように注意してください。インストールは非常に遅くなります (インターネット速度が十分に速い場合を除く)
環境変数の構成
現在のパスをコピーします
[マイ コンピュータ] -> 右クリック -> [システムの詳細設定] -> [環境変数] -> [システム変数]
システム変数で Path を見つけて編集し、上でコピーしたパスを追加します
win R->サービスを開始します。 msc
# サービスが開始されたら、「127.0.0.1:2701
#」と入力します。## とブラウザに入力すると、この行の英語が表示されます。これは、サービスが正常に開始されたことを意味します。
5. SpringBoot は MongoDB を統合します
環境の準備オペレーティング システム: Window10
IDE: IntelliJ IDEA 2018.2.4
データベース: MongoDB
1) 依存関係を導入します
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency>
2) application.yml に次の構成を追加します
spring: data: mongodb: uri: mongodb://localhost/test_mongodb
完全な構成情報は次のとおりです:
spring: data: mongodb: authentication-database: # Authentication database name. database: # Database name. field-naming-strategy: # Fully qualified name of the FieldNamingStrategy to use. grid-fs-database: # GridFS database name. host: # Mongo server host. Cannot be set with URI. password: # Login password of the mongo server. Cannot be set with URI. port: # Mongo server port. Cannot be set with URI. repositories: type: # Type of Mongo repositories to enable. uri: # Mongo database URI. Cannot be set with host, port and credentials. username: # Login user of the mongo server. Cannot be set with URI.
3) エンティティ クラス UserEntity を追加します
public class UserEntity { @Id private String uid; private String username; private String password; public String getUid() { return uid; } public void setUid(String uid) { this.uid = uid; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } @Override public String toString() { return "UserEntity{" + "uid='" + uid + '\'' + ", username='" + username + '\'' + ", password='" + password + '\'' + '}'; } }
4) 新しいテストを作成します。ここでは、MongoDB を表示するための視覚化ツールとして navicat を使用します。
テスト 1: 挿入操作
@Autowired private MongoTemplate mongoTemplate; @Test public void saveUser(){ UserEntity userEntity1 = new UserEntity(); UserEntity userEntity2 = new UserEntity(); UserEntity userEntity3 = new UserEntity(); userEntity1.setUid("111"); userEntity1.setUsername("用户1"); userEntity1.setPassword("密码1"); userEntity2.setUid("222"); userEntity2.setUsername("用户2"); userEntity2.setPassword("密码2"); userEntity3.setUid("333"); userEntity3.setUsername("用户3"); userEntity3.setPassword("密码3"); mongoTemplate.save(userEntity1); mongoTemplate.save(userEntity2); mongoTemplate.save(userEntity3); }
データベース情報:
ご覧のとおり、MongoDB はデータベースを自動的に作成し、エンティティ クラス コレクション (データ テーブルとよく呼ばれます)。MongoTemplate を通じてデータベースの userEntity コレクションにいくつかのドキュメントを挿入しました (つまり、いくつかのレコードを挿入しました)。
_idは主キー、_class はエンティティ クラスのパッケージ名とクラス名です。 テスト 2: クエリ操作
@Autowired private MongoTemplate mongoTemplate; @Test public void findUserByUserName(){ String username = "用户1"; Query query=new Query(Criteria.where("username").is(username)); UserEntity user = mongoTemplate.findOne(query , UserEntity.class); System.out.println(user); }
出力結果:
UserEntity{uid='111'、username='User 1'、password='Password 1'}テスト 3: 更新操作
Update 削除後のデータベースは図のようになります。@Autowired private MongoTemplate mongoTemplate; @Test public void updateUser(){ UserEntity userEntity = new UserEntity(); userEntity.setUid("111"); userEntity.setUsername("更新后的用户名"); userEntity.setPassword("更新后的密码"); Query query = new Query(Criteria.where("_id").is(userEntity.getUid())); Update update = Update.update("username",userEntity.getUsername()).set("password",userEntity.getPassword()); //更新返回结果集的第一条 mongoTemplate.updateFirst(query,update,UserEntity.class); //更新返回结果集的所有 //mongoTemplate.updateMulti(query,update,UserEntity.class); }ログイン後にコピー
テスト 4: 削除操作
@Autowired private MongoTemplate mongoTemplate; @Test public void DeleteByUserId(){ String id = "222"; Query query=new Query(Criteria.where("_id").is(id)); mongoTemplate.remove(query,UserEntity.class); }
削除後のデータベースは図のようになります。 :
以上がSpringBoot が Mongodb を統合して追加、削除、変更を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。