├── .github └── workflows │ └── test.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── github │ │ └── tomix26 │ │ └── embedded │ │ └── database │ │ └── demo │ │ ├── DemoApplication.java │ │ └── domain │ │ ├── Person.java │ │ └── PersonRepository.java └── resources │ ├── application.properties │ ├── db │ └── migration │ │ └── V0001_1__create_person_table.sql │ └── logback.xml └── test └── java └── com └── github └── tomix26 └── embedded └── database └── demo ├── CustomDataJpaAnnotationTest.java ├── SpringDataJpaAnnotationTest.java └── annotation └── PostgresDataJpaTest.java /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/github/tomix26/embedded/database/demo/DemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/java/com/github/tomix26/embedded/database/demo/DemoApplication.java -------------------------------------------------------------------------------- /src/main/java/com/github/tomix26/embedded/database/demo/domain/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/java/com/github/tomix26/embedded/database/demo/domain/Person.java -------------------------------------------------------------------------------- /src/main/java/com/github/tomix26/embedded/database/demo/domain/PersonRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/java/com/github/tomix26/embedded/database/demo/domain/PersonRepository.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/db/migration/V0001_1__create_person_table.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/resources/db/migration/V0001_1__create_person_table.sql -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/test/java/com/github/tomix26/embedded/database/demo/CustomDataJpaAnnotationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/test/java/com/github/tomix26/embedded/database/demo/CustomDataJpaAnnotationTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/tomix26/embedded/database/demo/SpringDataJpaAnnotationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/test/java/com/github/tomix26/embedded/database/demo/SpringDataJpaAnnotationTest.java -------------------------------------------------------------------------------- /src/test/java/com/github/tomix26/embedded/database/demo/annotation/PostgresDataJpaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomix26/embedded-database-demo/HEAD/src/test/java/com/github/tomix26/embedded/database/demo/annotation/PostgresDataJpaTest.java --------------------------------------------------------------------------------