91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

肃宁县| 无棣县| 安远县| 六枝特区| 广汉市| 新丰县| 东平县| 宕昌县| 鹿邑县| 班玛县| 资源县| 德令哈市| 弋阳县| 南部县| 紫阳县| 涟水县| 银川市| 乌鲁木齐县| 镇安县| 新和县| 若羌县| 韩城市| 措勤县| 黄平县| 定安县| 镶黄旗| 白水县| 宁津县| 安新县| 江津市| 农安县| 思南县| 亳州市| 余庆县| 沈阳市| 佛冈县| 灌南县| 宜都市| 长顺县| 荃湾区| 特克斯县|