From 8d1a41b4245a665b6833d31762eb7574b8aff6cf Mon Sep 17 00:00:00 2001 From: wzhao510 <510273941@qq.com> Date: Fri, 20 Sep 2024 07:34:39 +0000 Subject: [PATCH] a Signed-off-by: wzhao510 <510273941@qq.com> --- hibernateTest/.gitignore | 38 ++++++++++++++++++ hibernateTest/pom.xml | 76 +++++++++++++++++++++++++++++++++++ hibernateTest/testGaussDB.iml | 8 ++++ 3 files changed, 122 insertions(+) create mode 100644 hibernateTest/.gitignore create mode 100644 hibernateTest/pom.xml create mode 100644 hibernateTest/testGaussDB.iml diff --git a/hibernateTest/.gitignore b/hibernateTest/.gitignore new file mode 100644 index 000000000..5ff6309b7 --- /dev/null +++ b/hibernateTest/.gitignore @@ -0,0 +1,38 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/hibernateTest/pom.xml b/hibernateTest/pom.xml new file mode 100644 index 000000000..0dc28ccc7 --- /dev/null +++ b/hibernateTest/pom.xml @@ -0,0 +1,76 @@ + + + 4.0.0 + + org.example + hiberate-test + 1.0-SNAPSHOT + + + 8 + 8 + UTF-8 + + + + + org.springframework.boot + spring-boot-starter-web + 2.7.9 + + + + org.springframework.boot + spring-boot-starter-test + 2.7.9 + test + + + + com.baomidou + mybatis-plus-boot-starter + 3.5.3 + + + org.opengauss + opengauss-jdbc + 6.0.0 + + + + + org.projectlombok + lombok + 1.18.20 + provided + + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.7.9 + + + org.springframework.boot + spring-boot-starter-jdbc + 2.7.9 + + + mysql + mysql-connector-java + 8.0.13 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + \ No newline at end of file diff --git a/hibernateTest/testGaussDB.iml b/hibernateTest/testGaussDB.iml new file mode 100644 index 000000000..f1da12275 --- /dev/null +++ b/hibernateTest/testGaussDB.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file