首頁 > 軟體

SpringBoot MongoDB詳細使用教學

2022-10-28 14:00:35

前言

MongoDB是一個基於分散式檔案儲存的NoSQL資料庫,由C++語言編寫,旨在為Web應用提供可延伸的高效能資料儲存解決方案。

MongoDB是一個介於關聯式資料庫和非關聯式資料庫之間的產品,是非關聯式資料庫中功能最豐富最像關聯式資料庫的,它支援的資料結構非常鬆散,是類似JSON的BSON格式,因此可以儲存比較複雜的資料型別。Mongo最大的特點是它支援的查詢語言非常強大,其語法有點類似與 物件導向的查詢語言,幾乎可以實現類似關聯式資料庫單表查詢的絕大部分功能,而且還支援對資料建立索引。

安裝MongoDB

官方網站https://www.mongodb.com/downlad-center/community下載

Spring Boot整合MongoDB

Spring對MongoDB的支援主要是通過Spring Data MongoDB實現的,Spring Data MongoDB提供瞭如下功能

1:物件/檔案對映註解

2:MongoTemplate

提供了資料存取的方法

3:Repository

public interface PersonRepository extends MongoRepository<Person,String>{
}

實戰進行增刪改查

1:建立基於spring-boot-starter-data-mongodb依賴的Spring Boot應用

2:設定application.properties檔案

server.servlet.context-path=/ch6_8
#讓控制器輸出的JSON字串格式更美觀
spring.jackson.serialization.indent-output=true 

3:建立領域模型

建立名為com.ch.ch6_8.domain的包 並在該包中建立領域模型Person以及人去過的Loation

Person程式碼如下

package com.ch.ch6_8.domain;
import java.util.ArrayList;
import java.util.List;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
@Document
public class Person {
	@Id
	private String pid;
	private String pname;
	private Integer page;
	private String psex;
	@Field("plocs")
	private List<Location> locations = new ArrayList<Location>();
	public Person() {
		super();
	}
	public Person(String pname, Integer page, String psex) {
		super();
		this.pname = pname;
		this.page = page;
		this.psex = psex;
	}
	public String getPid() {
		return pid;
	}
	public void setPid(String pid) {
		this.pid = pid;
	}
	public String getPname() {
		return pname;
	}
	public void setPname(String pname) {
		this.pname = pname;
	}
	public Integer getPage() {
		return page;
	}
	public void setPage(Integer page) {
		this.page = page;
	}
	public String getPsex() {
		return psex;
	}
	public void setPsex(String psex) {
		this.psex = psex;
	}
	public List<Location> getLocations() {
		return locations;
	}
	public void setLocations(List<Location> locations) {
		this.locations = locations;
	}
}

Location程式碼如下

package com.ch.ch6_8.domain;
public class Location {
	private String locName;
	private String year;
	public Location() {
		super();
	}
	public Location(String locName, String year) {
		super();
		this.locName = locName;
		this.year = year;
	}
	public String getLocName() {
		return locName;
	}
	public void setLocName(String locName) {
		this.locName = locName;
	}
	public String getYear() {
		return year;
	}
	public void setYear(String year) {
		this.year = year;
	}
}

4:建立資料存取介面

package com.ch.ch6_8.repository;
import java.util.List;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.data.mongodb.repository.Query;
import com.ch.ch6_8.domain.Person;
public interface PersonRepository extends MongoRepository<Person, String>{
	Person findByPname(String pname);//支援方法名查詢,方法名命名規範參照表6.1
	@Query("{'psex':?0}")//JSON字串
	List<Person> selectPersonsByPsex(String psex);
}

5:建立控制器層

建立控制器類TestMongoDBController

package com.ch.ch6_8.controller;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.ch.ch6_8.domain.Location;
import com.ch.ch6_8.domain.Person;
import com.ch.ch6_8.repository.PersonRepository;
@RestController
public class TestMongoDBController {
	@Autowired
	private PersonRepository personRepository;
	@RequestMapping("/save")
	public List<Person> save() {
		List<Location> locations1 = new ArrayList<Location>();
		Location loc1 = new Location("北京","2019");
		Location loc2 = new Location("上海","2018");
		locations1.add(loc1);
		locations1.add(loc2);
		
		List<Location> locations2 = new ArrayList<Location>();
		Location loc3 = new Location("廣州","2017");
		Location loc4 = new Location("深圳","2016");
		locations2.add(loc3);
		locations2.add(loc4);
		List<Person> persons = new ArrayList<Person>();
		Person p1 = new Person("陳恆1", 88, "男");
		p1.setLocations(locations1);
		Person p2 = new Person("陳恆2", 99, "女");
		p2.setLocations(locations2);
		persons.add(p1);
		persons.add(p2);
		return personRepository.saveAll(persons);
	}
	@RequestMapping("/findByPname")
	public Person findByPname(String pname) {
		return personRepository.findByPname(pname);
	}
	@RequestMapping("/selectPersonsByPsex")
	public List<Person> selectPersonsByPsex(String psex) {
		return personRepository.selectPersonsByPsex(psex);
	}
	@RequestMapping("/updatePerson")
	public Person updatePerson(String oldPname, String newPname) {
		Person p1 = personRepository.findByPname(oldPname);
		if(p1 != null)
			p1.setPname(newPname);
		return personRepository.save(p1);
	}
	@RequestMapping("/deletePerson")
	public void updatePerson(String pname) {
		Person p1 = personRepository.findByPname(pname);
		personRepository.delete(p1);
	}
}

執行主類後 可以使用MongoDB的圖形介面管理工具MongoDB Compass開啟檢視已儲存的資料

到此這篇關於SpringBoot MongoDB詳細使用教學的文章就介紹到這了,更多相關SpringBoot MongoDB內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com