JPAプロジェクトの作成


DBの選択


H2


http://www.h2database.com
DBを接続してダウンロードします.
H 2コンソールを実行します.

「接続」(Connection)をクリックします.

デバイスが生成されました.

intellijプロジェクトの作成


buildはgradleを選択しました.
JAvaバージョンは8つ以上のバージョンを選択する必要があります.
build.から
依存項目の追加
// https://mvnrepository.com/artifact/org.hibernate/hibernate-entitymanager
implementation group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.3.10.Final'
// https://mvnrepository.com/artifact/com.h2database/h2
testImplementation group: 'com.h2database', name: 'h2', version: '1.4.199'

JPA設定ファイル


しげん
/META-INF/persistence.xml形式でプロファイルを指定する必要があります.
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.2"
             xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd">
    <persistence-unit name="hello">
        <properties>
            <!-- 필수 속성 -->
            <property name="javax.persistence.jdbc.driver" value="org.h2.Driver"/>
            <property name="javax.persistence.jdbc.user" value="sa"/>
            <property name="javax.persistence.jdbc.password" value=""/>
            <property name="javax.persistence.jdbc.url" value="jdbc:h2:tcp://localhost/~/test"/>
            <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>

            <!-- 옵션 -->
            <property name="hibernate.show_sql" value="true"/>
            <property name="hibernate.format_sql" value="true"/>
            <property name="hibernate.use_sql_comments" value="true"/>
            <!--<property name="hibernate.hbm2ddl.auto" value="create" />-->
        </properties>
    </persistence-unit>
</persistence>
property name="hibernate.dialect"value="org.hibernate.dialect.H2Dialect"
で、nameは、クエリーごとに異なる部分を設定することを示します.
ex)ページング:MySQLはLIMIT、OracleはROWNUM
valueで使用するdbを変更すればいいです.