SpringBoot整合Mongodb實現增刪查改的方法
一、什麼是MongoDB
MongoDB與我們之前熟知的關系型數據庫(MySQL、Oracle)不同,MongoDB是一個文檔數據庫,它具有所需的可伸縮性和靈活性,以及所需的查詢和索引。
MongoDB將數據存儲在靈活的、類似JSON的文檔中,這意味著文檔的字段可能因文檔而異,數據結構也會隨著時間的推移而改變。文檔模型映射到應用程序代碼中的對象,使數據易於處理。MongoDB是一個以分佈式數據庫為核心的數據庫,因此高可用性、橫向擴展和地理分佈是內置的,並且易於使用。況且,MongoDB是免費的,開源的。
二、在Window10上安裝MongoDB
打開MongoDB官網
下載MSI版本(安裝版)
下載的時候選擇Custom
安裝的時候,註意不要勾上安裝可視化插件,否則安裝會非常慢(除非你網速夠快)
三、配置MongoDB服務
配置環境變量
復制當前路徑
我的電腦->右鍵->高級系統設置->環境變量->系統變量
在系統變量找到Path,編輯,將上面復制的路徑增加進去
四、啟動服務
win+R->輸入services.msc
服務啟動後,在瀏覽器輸入 127.0.0.1:2701
出現這行英語則代表服務啟動成功。
五、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)新建測試。這裡我用navicat作為MongoDB的可視化工具進行查看。
測試一:插入操作
@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 則為實體類包名+類名
測試二:查詢操作
@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='用戶1', password='密碼1'}
測試三:更新操作
@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); }
更新後數據庫如圖所示:
測試四:刪除操作
@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實現簡單的增刪查改的文章就介紹到這瞭,更多相關SpringBoot整合Mongodb增刪查改內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- springboot整合mongodb並實現crud步驟詳解
- Spring Boot中快速操作Mongodb數據庫指南
- SpringBoot中使用MongoDB的連接池配置
- SpringBoot整合MongoDB的步驟詳解
- SpringBoot整合MongoDB的實現步驟