摘要:如果你想自定義一些查詢,比如根據來查詢,獲取根據來查詢,只需要定義一個方法即可。注意嚴格按照存入的的字段對應。測試在的應用程序,加入測試代碼。啟動程序,控制臺打印了測試通過。
這篇文章主要介紹springboot如何整合mongodb。
準備工作安裝 MongoDB jdk 1.8 maven 3.0 idea環境依賴
在pom文件引入spring-boot-starter-data-mongodb依賴:
數據源配置org.springframework.boot spring-boot-starter-data-mongodb
如果mongodb端口是默認端口,并且沒有設置密碼,可不配置,sprinboot會開啟默認的。
spring.data.mongodb.uri=mongodb://localhost:27017/springboot-db
mongodb設置了密碼,這樣配置:
spring.data.mongodb.uri=mongodb://name:pass@localhost:27017/dbname定義一個簡單的實體
mongodb
package com.forezp.entity; import org.springframework.data.annotation.Id; public class Customer { @Id public String id; public String firstName; public String lastName; public Customer() {} public Customer(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } @Override public String toString() { return String.format( "Customer[id=%s, firstName="%s", lastName="%s"]", id, firstName, lastName); } }數據操作dao層
public interface CustomerRepository extends MongoRepository{ public Customer findByFirstName(String firstName); public List findByLastName(String lastName); }
寫一個接口,繼承MongoRepository,這個接口有了幾本的CURD的功能。如果你想自定義一些查詢,比如根據firstName來查詢,獲取根據lastName來查詢,只需要定義一個方法即可。注意firstName嚴格按照存入的mongodb的字段對應。在典型的java的應用程序,寫這樣一個接口的方法,需要自己實現,但是在springboot中,你只需要按照格式寫一個接口名和對應的參數就可以了,因為springboot已經幫你實現了。
測試@SpringBootApplication public class SpringbootMongodbApplication implements CommandLineRunner { @Autowired private CustomerRepository repository; public static void main(String[] args) { SpringApplication.run(SpringbootMongodbApplication.class, args); } @Override public void run(String... args) throws Exception { repository.deleteAll(); // save a couple of customers repository.save(new Customer("Alice", "Smith")); repository.save(new Customer("Bob", "Smith")); // fetch all customers System.out.println("Customers found with findAll():"); System.out.println("-------------------------------"); for (Customer customer : repository.findAll()) { System.out.println(customer); } System.out.println(); // fetch an individual customer System.out.println("Customer found with findByFirstName("Alice"):"); System.out.println("--------------------------------"); System.out.println(repository.findByFirstName("Alice")); System.out.println("Customers found with findByLastName("Smith"):"); System.out.println("--------------------------------"); for (Customer customer : repository.findByLastName("Smith")) { System.out.println(customer); } }
在springboot的應用程序,加入測試代碼。啟動程序,控制臺打印了:
Customers found with findAll(): ——————————- Customer[id=58f880f589ffb696b8a6077e, firstName=’Alice’, lastName=’Smith’] Customer[id=58f880f589ffb696b8a6077f, firstName=’Bob’, lastName=’Smith’] Customer found with findByFirstName(‘Alice’): ——————————– Customer[id=58f880f589ffb696b8a6077e, firstName=’Alice’, lastName=’Smith’] Customers found with findByLastName(‘Smith’): ——————————– Customer[id=58f880f589ffb696b8a6077e, firstName=’Alice’, lastName=’Smith’] Customer[id=58f880f589ffb696b8a6077f, firstName=’Bob’, lastName=’Smith’]
測試通過。
源碼下載:https://github.com/forezp/Spr...
參考資料accessing-data-mongodb
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/70381.html
摘要:通用是為了解決使用中的基本操作,使用它可以很方便的進行開發,可以節省開發人員大量的時間。當該參數設置為時,時會查詢第一頁,超過總數時,會查詢最后一頁。 SpringBoot 是為了簡化 Spring 應用的創建、運行、調試、部署等一系列問題而誕生的產物,自動裝配的特性讓我們可以更好的關注業務本身而不是外部的XML配置,我們只需遵循規范,引入相關的依賴就可以輕易的搭建出一個 WEB 工...
摘要:構建工程創建一個工程,在它的程序入口加上開啟調度任務。創建定時任務創建一個定時任務,每過在控制臺打印當前時間。通過在方法上加注解,表明該方法是一個調度任務。 這篇文章將介紹怎么通過spring去做調度任務。 構建工程 創建一個Springboot工程,在它的程序入口加上@EnableScheduling,開啟調度任務。 @SpringBootApplication @EnableSch...
摘要:開公眾號差不多兩年了,有不少原創教程,當原創越來越多時,大家搜索起來就很不方便,因此做了一個索引幫助大家快速找到需要的文章系列處理登錄請求前后端分離一使用完美處理權限問題前后端分離二使用完美處理權限問題前后端分離三中密碼加鹽與中異常統一處理 開公眾號差不多兩年了,有不少原創教程,當原創越來越多時,大家搜索起來就很不方便,因此做了一個索引幫助大家快速找到需要的文章! Spring Boo...
閱讀 813·2021-11-18 10:02
閱讀 2503·2021-11-11 16:54
閱讀 2750·2021-09-02 09:45
閱讀 654·2019-08-30 12:52
閱讀 2774·2019-08-29 14:04
閱讀 2745·2019-08-29 12:39
閱讀 448·2019-08-29 12:27
閱讀 1887·2019-08-26 13:23