微信公眾號:一個優秀的廢人。如有問題,請後臺留言,反正我也不會聽。

前言

如題,今天介紹下 SpringBoot 是如何整合 MongoDB 的。

MongoDB 簡介

MongoDB 是由 C++ 編寫的非關係型資料庫,是一個基於分散式文件存儲的開源資料庫系統,它將數據存儲為一個文檔,數據結構由鍵值 (key=>value) 對組成。MongoDB 文檔類似於 JSON 對象。欄位值可以包含其他文檔,數組及文檔數組,非常靈活。存儲結構如下:

{
"studentId": "201311611405",
"age":24,
"gender":"男",
"name":"一個優秀的廢人"
}

準備工作

  • SpringBoot 2.1.3 RELEASE
  • MongnDB 2.1.3 RELEASE
  • MongoDB 4.0
  • IDEA
  • JDK8
  • 創建一個名為 test 的資料庫,不會建的。參考菜鳥教程:

    runoob.com/mongodb/mong

配置數據源

spring:
data:
mongodb:
uri: mongodb://localhost:27017/test

以上是無密碼寫法,如果 MongoDB 設置了密碼應這樣設置:

spring:
data:
mongodb:
uri: mongodb://name:password@localhost:27017/test

pom 依賴配置

<!-- mongodb 依賴 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<!-- web 依賴 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- lombok 依賴 -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<!-- test 依賴(沒用到) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

實體類

@Data
public class Student {

@Id
private String id;

@NotNull
private String studentId;

private Integer age;

private String name;

private String gender;

}

dao 層

和 JPA 一樣,SpringBoot 同樣為開發者準備了一套 Repository ,只需要繼承 MongoRepository 傳入實體類型以及主鍵類型即可。

@Repository
public interface StudentRepository extends MongoRepository<Student, String> {
}

service 層

public interface StudentService {

Student addStudent(Student student);

void deleteStudent(String id);

Student updateStudent(Student student);

Student findStudentById(String id);

List<Student> findAllStudent();

}

實現類:

@Service
public class StudentServiceImpl implements StudentService {

@Autowired
private StudentRepository studentRepository;

/**
* 添加學生信息
* @param student
* @return
*/
@Override
@Transactional(rollbackFor = Exception.class)
public Student addStudent(Student student) {
return studentRepository.save(student);
}

/**
* 根據 id 刪除學生信息
* @param id
*/
@Override
public void deleteStudent(String id) {
studentRepository.deleteById(id);
}

/**
* 更新學生信息
* @param student
* @return
*/
@Override
@Transactional(rollbackFor = Exception.class)
public Student updateStudent(Student student) {
Student oldStudent = this.findStudentById(student.getId());
if (oldStudent != null){
oldStudent.setStudentId(student.getStudentId());
oldStudent.setAge(student.getAge());
oldStudent.setName(student.getName());
oldStudent.setGender(student.getGender());
return studentRepository.save(oldStudent);
} else {
return null;
}
}

/**
* 根據 id 查詢學生信息
* @param id
* @return
*/
@Override
public Student findStudentById(String id) {
return studentRepository.findById(id).get();
}

/**
* 查詢學生信息列表
* @return
*/
@Override
public List<Student> findAllStudent() {
return studentRepository.findAll();
}
}

controller 層

@RestController
@RequestMapping("/student")
public class StudentController {

@Autowired
private StudentService studentService;

@PostMapping("/add")
public Student addStudent(@RequestBody Student student){
return studentService.addStudent(student);
}

@PutMapping("/update")
public Student updateStudent(@RequestBody Student student){
return studentService.updateStudent(student);
}

@GetMapping("/{id}")
public Student findStudentById(@PathVariable("id") String id){
return studentService.findStudentById(id);
}

@DeleteMapping("/{id}")
public void deleteStudentById(@PathVariable("id") String id){
studentService.deleteStudent(id);
}

@GetMapping("/list")
public List<Student> findAllStudent(){
return studentService.findAllStudent();
}

}

測試結果

Postman 測試結果

Postman 測試已經全部通過,這裡僅展示了保存操作。

資料庫結果

這裡推薦一個資料庫可視化工具 Robo 3T 。下載地址:robomongo.org/download

完整代碼

github.com/turoDog/Demo

如果覺得對你有幫助,請給個 Star 再走唄,非常感謝。

後語

如果本文對你哪怕有一丁點幫助,請幫忙點好看。你的好看是我堅持寫作的動力。

另外,關注之後在發送 1024 可領取免費學習資料。

資料詳情請看這篇舊文:Python、C++、Java、Linux、Go、前端、演算法資料分享

一個優秀的廢人,給你講幾斤技術。

推薦閱讀:

相關文章