SpringBoot H2數(shù)據(jù)庫

什么是內(nèi)存數(shù)據(jù)庫

內(nèi)存數(shù)據(jù)庫依賴于系統(tǒng)內(nèi)存而不是磁盤數(shù)據(jù)存儲(chǔ)空間。因?yàn)閮?nèi)存訪問比磁盤訪問快。當(dāng)我們不需要持久化數(shù)據(jù)時(shí),我們使用內(nèi)存數(shù)據(jù)庫。內(nèi)存數(shù)據(jù)庫是嵌入式數(shù)據(jù)庫。默認(rèn)情況下,內(nèi)存數(shù)據(jù)庫是易失性的,當(dāng)我們重新啟動(dòng)應(yīng)用程序時(shí),所有存儲(chǔ)的數(shù)據(jù)都會(huì)丟失。

廣泛使用的內(nèi)存數(shù)據(jù)庫是 H2,HSQLDB (HyperSQL數(shù)據(jù)庫) , Apache Derby。 它會(huì)自動(dòng)創(chuàng)建配置。

持久性與內(nèi)存數(shù)據(jù)庫

持久性數(shù)據(jù)庫將數(shù)據(jù)持久存儲(chǔ)在物理內(nèi)存中。即使數(shù)據(jù)庫服務(wù)器退回,數(shù)據(jù)也將可用。一些流行的持久性數(shù)據(jù)庫是 Oracle , MySQL , Postgres ,等。

在對(duì)于 內(nèi)存數(shù)據(jù)庫,數(shù)據(jù)存儲(chǔ)在 系統(tǒng)內(nèi)存中。程序關(guān)閉時(shí)丟失了數(shù)據(jù)。它對(duì) POC (概念證明)很有幫助,而不對(duì)生產(chǎn)應(yīng)用程序有用。廣泛使用的內(nèi)存數(shù)據(jù)庫是 H2。

什么是H2數(shù)據(jù)庫

H2 嵌入式,開源內(nèi)存數(shù)據(jù)庫。它是用 Java 編寫的關(guān)系數(shù)據(jù)庫管理系統(tǒng)。這是一個(gè) 客戶端/服務(wù)器應(yīng)用程序。它通常用于 單元測(cè)試。它將數(shù)據(jù)存儲(chǔ)在內(nèi)存中,而不是將數(shù)據(jù)持久存儲(chǔ)在磁盤上。

優(yōu)點(diǎn)

零配置 易于使用。 輕巧,快速。 它提供了簡單的配置,可以在真實(shí)數(shù)據(jù)庫和內(nèi)存數(shù)據(jù)庫之間切換。 它支持標(biāo)準(zhǔn)的SQL和JDBC API。 它提供了一個(gè)可在數(shù)據(jù)庫中維護(hù)的Web控制臺(tái)。

配置H2數(shù)據(jù)庫

如果要在應(yīng)用程序中使用H2數(shù)據(jù)庫,則需要在pom.xml文件中添加以下依賴項(xiàng):

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>

添加依賴項(xiàng)后,我們需要配置H2數(shù)據(jù)庫的 數(shù)據(jù)源URL,驅(qū)動(dòng)程序類名稱,用戶名密碼。 Spring Boot提供了一種簡單的方法來配置 application.properties 文件中的這些屬性。

spring.datasource.url=jdbc:h2:mem:testdb
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect

spring.datasource.url 屬性中, mem 是內(nèi)存數(shù)據(jù)庫的名稱,而 testdb 是內(nèi)存數(shù)據(jù)庫的名稱。默認(rèn)情況下,H2提供的架構(gòu)。我們還可以定義自己的架構(gòu)和數(shù)據(jù)庫。默認(rèn)用戶名是 sa ,空白密碼表示 密碼。如果要更改用戶名和密碼,可以覆蓋這些值。

將數(shù)據(jù)保留在H2數(shù)據(jù)庫中

如果要將數(shù)據(jù)保留在在H2數(shù)據(jù)庫中,我們應(yīng)該將數(shù)據(jù)存儲(chǔ)在一個(gè)文件中。為此,我們需要更改數(shù)據(jù)源的 URL 屬性。

#保存數(shù)據(jù)
spring.datasource.url=jdbc:h2:file:/data/sampledata
spring.datasource.url=jdbc:h2:C:/data/sampledata

在上面的屬性中, sampledata 是一個(gè)文件名。

創(chuàng)建Schema構(gòu)并填充數(shù)據(jù)

我們可以定義通過在 resource 文件夾(src)中創(chuàng)建 SQL 文件創(chuàng)建架構(gòu)/main/resource)。

schema.sql

DROP TABLE if EXISTS CITY;
CREATE TABLE CITY (
City_code int AUTO_INCREMENT  PRIMARY KEY,
city_name VARCHAR(50) NOT null,
city_pincode INT(8) NOT null,
);

我們可以通過在 resource 文件夾(src/main/resource)中創(chuàng)建一個(gè) SQL 文件來填充表中的數(shù)據(jù)。

data.sql

INSERT INTO CITY VALUES ('Delhi', 110001);
INSERT INTO CITY VALUES ('Kanpur', 208001);
INSERT INTO CITY VALUES ('Lucknow', 226001);

Spring Boot在應(yīng)用程序啟動(dòng)期間自動(dòng)拾取 data.sql 文件并針對(duì)H2數(shù)據(jù)庫運(yùn)行它。

H2控制臺(tái)

默認(rèn)情況下,禁用H2數(shù)據(jù)庫的控制臺(tái)視圖。在訪問H2數(shù)據(jù)庫之前,我們必須使用以下屬性啟用它。

#啟用H2
consolespring.h2.console.enabled=true

一旦啟用了H2控制臺(tái),現(xiàn)在我們可以通過調(diào)用URL http://localhost:8080/h2-console在瀏覽器中訪問H2控制臺(tái)。下圖顯示了H2數(shù)據(jù)庫的控制臺(tái)視圖。

Spring Boot H2數(shù)據(jù)庫

在上面的屏幕快照中,我們定義了一個(gè)名為 nhooo 的數(shù)據(jù)庫。

Spring Boot H2示例

讓我們?cè)O(shè)置一個(gè)Spring Boot。

步驟1: 打開Spring Initializr http://start.spring.io 。

步驟2: 選擇Spring Boot版本 2.3.0.M1。

步驟2: 提供 Group名稱。我們提供了 com.nhooo。

步驟3: 提供 Artifact ID。我們提供了 spring-boot-h2-database-example。

步驟5: 添加依賴項(xiàng) Spring Web,Spring Data JPA , H2數(shù)據(jù)庫。

步驟6: 單擊 Generate (生成)按鈕。當(dāng)我們單擊"生成"按鈕時(shí),它會(huì)將項(xiàng)目包裝在 Jar 文件中,并將其下載到本地系統(tǒng)。

Spring Boot H2數(shù)據(jù)庫

步驟7: 提取 Jar文件并將其粘貼到STS工作區(qū)中。

第8步: 導(dǎo)入項(xiàng)目文件夾到STS。

文件->導(dǎo)入->現(xiàn)有Maven項(xiàng)目->瀏覽->選擇文件夾spring-boot-h2-database-example->完成

導(dǎo)入需要一些時(shí)間。

步驟9: src/main/java文件夾中的名稱 com.nhooo.model 。

步驟10: com.nhooo.model中的類。 我們創(chuàng)建了名為 Student的類。 在"圖書"類中,我們執(zhí)行了以下操作:

定義四個(gè)變量 id, age, name 生成Getter和Setters。
右鍵單擊文件-> Source-> Generate Getters和Setters。
使用注解 @Entity,將類標(biāo)記為 Entity 。 使用注解 @Table將該類標(biāo)記為 Table 名稱。 通過使用注解 @Column 將每個(gè)變量定義為 Column 。

Student.java

package com.nhooo.model;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
//將類標(biāo)記為實(shí)體
@Entity
//定義類名為表名
@Table
public class Student 
{
    //將id標(biāo)記為主鍵
    @Id
    //將id定義為列名
    @Column
    private int id;
    //將name定義為列名
    @Column
    private String name;
    //將年齡age為列名
    @Column
    private int age;
    //將email定義為列名
    @Column
    private String email;
    public int getId() 
    {
    return id;
    }
    public void setId(int id) 
    {
    this.id = id;
    }
    public String getName() 
    {
    return name;
    }
    public void setName(String name) 
    {
    this.name = name;
    }
    public int getAge() 
    {
    return age;
    }
    public void setAge(int age) 
    {
    this.age = age;
    }
    public String getEmail() 
    {
    return email;
    }
    public void setEmail(String email) 
    {
    this.email = email;
    }
}

步驟11: 在文件夾 src/main/java中創(chuàng)建一個(gè)名稱為 com.nhooo.controller 的包。  

步驟12: 在包   com.nhooo.controller 中創(chuàng)建一個(gè)Controller類。我們已經(jīng)創(chuàng)建了名稱為   StudentController 的控制器類。在StudentController類中,我們完成了以下操作:使用注解 @RestController將類標(biāo)記為 RestController 。 使用注解 @Autowired 自動(dòng)注解 StudentService 類。 定義以下方法: getAllStudent(): 它返回所有學(xué)生的列表。 getStudent(): 它返回我們?cè)趐ath變量中指定的學(xué)生詳細(xì)信息。通過使用注解@PathVariable,我們已將id作為參數(shù)傳遞。注解指示方法參數(shù)應(yīng)綁定到URI模板變量。 deleteStudent(): 它將刪除我們?cè)趐ath變量中指定的特定學(xué)生。 saveStudent(): 它保存學(xué)生的詳細(xì)信息。注解@RequestBody表示應(yīng)將方法參數(shù)綁定到Web請(qǐng)求的正文。

StudentController.java

package com.nhooo.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import com.nhooo.model.Student;
import com.nhooo.service.StudentService;
//creating RestController
@RestController
public class StudentController 
{
    //自動(dòng)裝配 StudentService 類
    @Autowired
    StudentService studentService;
    //創(chuàng)建從數(shù)據(jù)庫檢索所有學(xué)生詳細(xì)信息的get映射
    @GetMapping("/student")
    private List<Student> getAllStudent() 
    {
        return studentService.getAllStudent();
    }
    //創(chuàng)建檢索特定學(xué)生詳細(xì)信息的get映射
    @GetMapping("/student/{id}")
    private Student getStudent(@PathVariable("id") int id) 
    {
        return studentService.getStudentById(id);
    }
    //創(chuàng)建刪除映射,刪除特定的學(xué)生
    @DeleteMapping("/student/{id}")
    private void deleteStudent(@PathVariable("id") int id) 
    {
        studentService.delete(id);
    }
    //創(chuàng)建在數(shù)據(jù)庫中發(fā)布學(xué)生詳細(xì)信息的post映射
    @PostMapping("/student")
    private int saveStudent(@RequestBody Student student) 
    {
    studentService.saveOrUpdate(student);
    return student.getId();
    }
}

步驟13: 在文件夾   src/main/java中創(chuàng)建名稱為 com.nhooo.service 的包。

步驟14: 創(chuàng)建一個(gè)   Service 類。我們?cè)诎?  com.nhooo.service。

StudentService.java 中創(chuàng)建了名為   StudentService 的服務(wù)類。

package com.nhooo.service;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nhooo.model.Student;
import com.nhooo.repository.StudentRepository;
@Service
public class StudentService 
{
    @Autowired
    StudentRepository studentRepository;
    //獲取所有學(xué)生記錄
    public List<Student> getAllStudent() 
    {
    List<Student> students = new ArrayList<Student>();
    studentRepository.findAll().forEach(student -> students.add(student));
    return students;
    }
    //獲取特定記錄
    public Student getStudentById(int id) 
    {
    return studentRepository.findById(id).get();
    }
    public void saveOrUpdate(Student student) 
    {
    studentRepository.save(student);
    }
    //刪除特定記錄
    public void delete(int id) 
    {
    studentRepository.deleteById(id);
    }
}

步驟15: 在文件夾   src/main/java中創(chuàng)建一個(gè)名稱為 com.nhooo.repository 的包。

步驟16: 創(chuàng)建一個(gè)  存儲(chǔ)庫界面。我們?cè)诎?  com.nhooo.repository中創(chuàng)建了名稱為 StudentRepository 的存儲(chǔ)庫接口。 它擴(kuò)展了   Crud Repository 界面。

StudentRepository.java

package com.nhooo.repository;
import org.springframework.data.repository.CrudRepository;
import com.nhooo.model.Student;
public interface StudentRepository extends CrudRepository<Student, Integer>
{
}
 

現(xiàn)在,我們將在   application.properties 文件中配置數(shù)據(jù)源   URL,驅(qū)動(dòng)程序類名稱,用戶名和  密碼。

步驟17: 打開   application.properties 文件并配置以下屬性。

application.properties

spring.datasource.url=jdbc:h2:mem:nhooo
spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa
spring.datasource.password=
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
#啟用H2
consolespring.h2.console.enabled=true
注意: 不要忘記啟用H2控制臺(tái)。

之后創(chuàng)建所有類和包后,項(xiàng)目目錄如下所示。

Spring Boot H2數(shù)據(jù)庫

現(xiàn)在,我們將運(yùn)行該應(yīng)用程序。

步驟18: 打開   SpringBootH2DatabaseExampleApplication.java 文件并將其作為Java應(yīng)用程序運(yùn)行。

SpringBootH2DatabaseExampleApplication.java

package com.nhooo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootH2DatabaseExampleApplication 
{
    public static void main(String[] args) 
    {
        SpringApplication.run(SpringBootH2DatabaseExampleApplication.class, args);
    }
}

在下一步中,我們將使用其余客戶端  Postman發(fā)送   POST 和   GET 請(qǐng)求  。 如果您的系統(tǒng)中未安裝Postman,請(qǐng)執(zhí)行以下步驟:

從 https://www.getpostman.com/downloads/或在瀏覽器 https://bit.ly/1HCOCwF 中添加Google Chrome擴(kuò)展程序。 啟動(dòng)Postman并注冊(cè)。創(chuàng)建一個(gè)用戶名。我們已經(jīng)創(chuàng)建了一個(gè)名稱為 nhooo 的用戶,并點(diǎn)擊了 Submit

步驟19: 打開  Postman并執(zhí)行以下操作:

選擇 POST 調(diào)用URL http: //localhost: 8080/student。 選擇Body 選擇內(nèi)容類型 JSON(application/json)。 插入數(shù)據(jù)。我們?cè)谡闹胁迦肓艘韵聰?shù)據(jù):
{
    "id": "001",
    "age": "23",
    "name": "Amit",
    "email": "amit@yahoo.co.in"
}
點(diǎn)擊發(fā)送

請(qǐng)求成功執(zhí)行后,它會(huì)顯示  狀態(tài): 200 OK 。這意味著記錄已成功插入數(shù)據(jù)庫中。

類似地,我們插入了以下數(shù)據(jù)。

{"id": "002","age": "24","name": "Vadik","email": "vadik@yahoo.co.in"
} 
{
    "id": "003",
    "age": "21",
    "name": "Prateek",
    "email": "prateek@yahoo.co.in"
} 
{
    "id": "004",
    "age": "25",
    "name": "Harsh",
    "email": "harsh@yahoo.co.in"
} 
{
    "id": "005",
    "age": "24",
    "name": "Swarit",
    "email": "Swarit@yahoo.co.in"
}

讓我們?cè)L問H2控制臺(tái)以查看數(shù)據(jù)。

步驟20: 打開瀏覽器并調(diào)用URL http://localhost:8080/h2-console。單擊   Connect 按鈕,如下所示。

Spring Boot H2數(shù)據(jù)庫

單擊  連接按鈕后,我們將在數(shù)據(jù)庫中看到  Student表,如下所示。

Spring Boot H2數(shù)據(jù)庫

步驟21: 單擊  Student表,然后單擊  運(yùn)行按鈕。該表顯示了我們插入到正文中的數(shù)據(jù)。

Spring Boot H2數(shù)據(jù)庫

步驟22: 打開Postman并發(fā)送   GET 請(qǐng)求。它返回我們已經(jīng)插入數(shù)據(jù)庫中的數(shù)據(jù)。

Spring Boot H2數(shù)據(jù)庫

讓我們使用URL http: //localhost: 8080/student/{id}發(fā)送   GET 請(qǐng)求。我們已經(jīng)調(diào)用了URL http://localhost:8080/student/3。它返回ID為3的學(xué)生的詳細(xì)信息。

Spring Boot H2數(shù)據(jù)庫

同樣,我們也可以發(fā)送   Delete 請(qǐng)求。假設(shè)我們要?jiǎng)h除ID為2的學(xué)生記錄。

要?jiǎng)h除學(xué)生記錄,請(qǐng)發(fā)送帶有URL http://localhost:8080/student/的   DELETE 請(qǐng)求。我們看到ID為   2 的學(xué)生已從數(shù)據(jù)庫中刪除。

Spring Boot H2數(shù)據(jù)庫
丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清