Spring Data JPA(二):SpringBoot集成H2

H2是Thomas Mueller提供的一個開源的、純java實現的關係數據庫。php

前言

本篇文章引導你使用Spring BootSpring Data JPA集成H2內存數據庫。更多關於H2數據參考:www.h2database.com/html/tutori…html

準備

  • JDK 1.8 或更高版本
  • Maven 3 或更高版本

技術棧

  • Spring Data JPA
  • Spring Boot

目錄結構

https://user-gold-cdn.xitu.io/2018/3/23/16251dbe33e90b84?w=751&h=577&f=png&s=147454
https://user-gold-cdn.xitu.io/2018/3/23/16251dbe33e90b84?w=751&h=577&f=png&s=147454

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <artifactId>jpa-example</artifactId>
        <groupId>cn.merryyou</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>h2-webconsole</artifactId>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

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

        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <version>1.4.196</version>
        </dependency>

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

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.6.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
複製代碼

實體類

User
@Entity
@Table(name = "t_user")
@Data
public class User {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String name;

    private String url;

    @Override
    public String toString() {
        return "User{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", url='" + url + '\'' +
                '}';
    }
}
複製代碼
  • @Table聲明此對象映射到數據庫的數據表,經過它能夠爲實體指定表(talbe),目錄(Catalog)和schema的名字。該註釋不是必須的,若是沒有則系統使用默認值(實體的短類名)。java

  • @Id 聲明此屬性爲主鍵。該屬性值能夠經過應該自身建立,可是Hibernate推薦經過Hibernate生成git

  • @GeneratedValue 指定主鍵的生成策略。github

    1. TABLE:使用表保存id值
    2. IDENTITY:identitycolumn
    3. SEQUENCR :sequence
    4. AUTO:根據數據庫的不一樣使用上面三個
  • @Column 聲明該屬性與數據庫字段的映射關係。web

AddressRepository
public interface UserRepository extends JpaRepository<User, Integer> {
}
複製代碼

Spring Data JPA包含了一些內置的Repository,實現了一些經常使用的方法:findonefindallsave等。spring

application.yml
spring:
 datasource:
 url: jdbc:h2:mem:h2test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
 platform: h2
 username: sa
 password:
 driverClassName: org.h2.Driver
 jpa:
 database-platform: org.hibernate.dialect.H2Dialect
 hibernate:
 ddl-auto: update
 properties:
 hibernate:
 show_sql: true
 use_sql_comments: true
 format_sql: true
 h2:
 console:
 enabled: true
 path: /console
 settings:
 trace: false
 web-allow-others: false
logging:
 level: debug
複製代碼
鏈接配置

application.yml文件中對數據庫進行鏈接配置sql

  • spring.datasource.url=jdbc:h2:mem:h2test,配置h2數據庫的鏈接地址
  • spring.datasource.driver-class-name=org.h2.Driver,配置JDBC Driver
  • spring.datasource.username=sa,配置數據庫用戶名
  • spring.datasource.password=,配置數據庫密碼

當你完成依賴和鏈接配置這兩步以後,你就能夠在程序種使用h2了。spring會自動幫你完成DataSource的注入。數據庫

數據初始化配置

若是你須要在程序啓動時對數據庫進行初始化操做,則在application.properties文件中對數據庫進接配置apache

  • spring.datasource.schema=classpath:db/schema.sql,進行該配置後,每次啓動程序,程序都會運行resources/db/schema.sql文件,對數據庫的結構進行操做。
  • spring.datasource.data=classpath:db/data.sql,進行該配置後,每次啓動程序,程序都會運行resources/db/data.sql文件,對數據庫的數據操做。

該配置很是適合開發環境,我會把數據庫的結構構建sql放在resources/db/schema.sql,數據sql放在resources/db/data.sql中。這樣每次運行程序我均可以獲得一個新的數據庫。這樣就不須要我每次爲了測試而修改數據中的內容了。

h2 web consloe配置

h2 web consloe是一個數據庫GUI管理應用,就和phpMyAdmin相似。程序運行時,會自動啓動h2 web consloe。固然你也能夠進行以下的配置。

  • spring.h2.console.settings.web-allow-others=true,進行該配置後,h2 web consloe就能夠在遠程訪問了。不然只能在本機訪問。
  • spring.h2.console.path=/h2-console,進行該配置,你就能夠經過YOUR_URL/h2-console訪問h2 web consloeYOUR_URL是你程序的訪問URl
  • spring.h2.console.enabled=true,進行該配置,程序開啓時就會啓動h2 web consloe。固然這是默認的,若是你不想在啓動程序時啓動h2 web consloe,那麼就設置爲false。
UserRepositoryTest
@SpringBootTest
@RunWith(SpringRunner.class)
@Slf4j
public class UserRepositoryTest {

    @Autowired
    private UserRepository userRepository;

    @Test
    public void saveTest() throws Exception {
        User user = new User();
        user.setName("鄭龍飛");
        user.setUrl("http://merryyou.cn");
        User result = userRepository.save(user);
        log.info(result.toString());
        Assert.assertNotNull(user.getId());
    }

    @Test
    public void findOneTest() throws Exception{
        User user = userRepository.findOne(1l);
        log.info(user.toString());
        Assert.assertNotNull(user);
        Assert.assertTrue(1l==user.getId());
    }
}
複製代碼
h2 web consloe

https://user-gold-cdn.xitu.io/2018/3/23/16251dbe33fafdce?w=714&h=484&f=png&s=24969
https://user-gold-cdn.xitu.io/2018/3/23/16251dbe33fafdce?w=714&h=484&f=png&s=24969

https://user-gold-cdn.xitu.io/2018/3/23/16251dbe3405a53c?w=685&h=449&f=png&s=29554
https://user-gold-cdn.xitu.io/2018/3/23/16251dbe3405a53c?w=685&h=449&f=png&s=29554

代碼下載

從個人 github 中下載,github.com/longfeizhen…


https://user-gold-cdn.xitu.io/2018/3/18/16237d0aa0954ed5?w=301&h=330&f=png&s=78572
https://user-gold-cdn.xitu.io/2018/3/18/16237d0aa0954ed5?w=301&h=330&f=png&s=78572

🙂🙂🙂關注微信小程序java架構師歷程 上下班的路上無聊嗎?還在看小說、新聞嗎?不知道怎樣提升本身的技術嗎?來吧這裏有你須要的java架構文章,1.5w+的java工程師都在看,你還在等什麼?

相關文章
相關標籤/搜索