中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring boot2.x中集成H2數據庫代碼實例

發布時間:2020-08-25 22:37:17 來源:腳本之家 閱讀:133 作者:慕塵 欄目:編程語言

這篇文章主要介紹了Spring boot2.x中集成H2數據庫代碼實例,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

在spring boot中集成

1.添加依賴

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
  <groupId>com.h3database</groupId>
  <artifactId>h3</artifactId>
  <scope>runtime</scope>
</dependency>

<dependency>
  <groupId>org.projectlombok</groupId>
  <artifactId>lombok</artifactId>
</dependency>

2.添加H2相關配置,修改application.properties文件

spring.jpa.database=h3
spring.jpa.show-sql=true
#ddl執行方式,update create 等

spring.datasource.url=jdbc:h3:./data/test;AUTO_SERVER=TRUE
spring.jpa.hibernate.ddl-auto=update
spring.datasource.username=sa
spring.datasource.password=123456
spring.datasource.driverClassName=org.h3.Driver

spring.h3.console.path=/h3-console
spring.h3.console.enabled=true

說明:

spring.datasource.url

數據庫文件

(1)內存數據庫

jdbc:h3:mem:DBName

內存數據庫的數據存在內存中,當程序停止時,不會被保存會丟失

eg:

spring.datasource.url=jdbc:h3:mem:test

(2)文件數據庫

jdbc:h3:file:{FilePath} 也可以簡化為 jdbc:h3:{FilePath}

FilePath的格式

  • a) ./{path}/{fileName} 在當前程序的根目錄下創建目錄和數據庫文件
  • b) ~/{path}/{fileName} 在當前用戶的根目錄下創建目錄和數據庫文件
  • c) C:/{path}/{fileName} 在指定盤符的指定目錄下創建數據庫文件

(3)遠程數據庫

jdbc:h3:tcp://<{IP|hostname}>[:{Port}]/[]<{dbName}>

附加參數:

  • AUTO_SERVER=TRUE 啟動自動混合模式,允許開啟多個連接,該參數不支持在內存中運行模式
  • DB_CLOSE_ON_EXIT=FALSE,當虛擬機退出時并不關閉數據庫

3.代碼

domain層,即User類(entity)

package com.example.demo.domain;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.persistence.*;

@Entity
@Table(name = "user")
@Data
public class User {
  @Id
  @GeneratedValue(strategy= GenerationType.AUTO)
  private int id;
  private String name;

  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;
  }
}

dao層,即UserRepository 接口

package com.example.demo.dao;

import com.example.demo.domain.User;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

import java.util.List;

@Repository
public interface UserRepository extends JpaRepository<User,Integer> {
  List<User> getUsersByName(String Name);
}

controller層,即Demo

package com.example.demo.controller;

import com.example.demo.dao.UserRepository;
import com.example.demo.domain.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

@RestController
public class Demo {
  @Autowired
  private UserRepository repo;

  @RequestMapping("find")
  public List<User> find() {
    return (List<User>) repo.findAll();
  }
}

編寫DemoApplication

package com.example.demo;

import com.example.demo.dao.UserRepository;
import com.example.demo.domain.User;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class DemoApplication {

  @Bean
  InitializingBean saveData(UserRepository repo){

    return ()->{
      User u = new User();
      u.setName("abc");
      repo.save(u);
      User u1 = new User();
      u1.setName("zyx");
      repo.save(u1);

    };
  }

  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }

}

啟動項目,打開瀏覽器訪問http://localhost:8080/find

Spring boot2.x中集成H2數據庫代碼實例

訪問http://localhost:8080/h3-console/

Spring boot2.x中集成H2數據庫代碼實例

連接上后查詢數據

Spring boot2.x中集成H2數據庫代碼實例

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

霍城县| 盐津县| 本溪| 金山区| 武穴市| 阳东县| 隆昌县| 日照市| 浑源县| 天等县| 富锦市| 遵义市| 永新县| 宁蒗| 来安县| 富宁县| 武川县| 江津市| 基隆市| 宜兴市| 万州区| 拉萨市| 阜康市| 紫阳县| 聂荣县| 西林县| 随州市| 泌阳县| 全椒县| 双辽市| 且末县| 湛江市| 资溪县| 怀安县| 天峨县| 闽侯县| 轮台县| 绩溪县| 西乌| 沁源县| 台山市|