3 Star 11 Fork 6

wujiawei/spring-orm-integration-compare

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 8.21 KB
一键复制 编辑 原始数据 按行查看 历史
wujiawei 提交于 2024-05-28 10:26 . [fix] 新增qdbc测试
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.7</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>wu2020.top</groupId>
<artifactId>spring-orm-integration-compare</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-orm-integration-compare</name>
<description>spring-orm-integration-compare</description>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- web 容器 -->
<dependency>
<groupId>top.wu2020</groupId>
<artifactId>wu-framework-web</artifactId>
</dependency>
<!-- mapstruct -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-mapstruct-binding</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.5.5.Final</version>
</dependency>
<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.5.5.Final</version>
</dependency>
<!-- acw 客户端 -->
<dependency>
<groupId>top.wu2020</groupId>
<artifactId>wu-smart-acw-client</artifactId>
</dependency>
<!-- mysql -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<!-- ORM mybatis -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.4</version>
</dependency>
<!-- ORM Lazy ORM -->
<!-- 这个是不带插件的
<dependency>-->
<!-- <groupId>top.wu2020</groupId>-->
<!-- <artifactId>wu-database-lazy-starter</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>top.wu2020</groupId>
<artifactId>wu-database-lazy-plus-starter</artifactId>
</dependency>
<!-- ORM sagacity-sqltoy-starter -->
<dependency>
<groupId>com.sagframe</groupId>
<artifactId>sagacity-sqltoy-starter</artifactId>
<version>5.2.98</version>
</dependency>
<!-- ORM mybatis-flex-->
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot3-starter</artifactId>
<version>1.8.0</version>
</dependency>
<!-- mybatis-flex代码生成 -->
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId>
<version>1.8.0</version>
</dependency>
<!-- easy-query ORM -->
<dependency>
<groupId>com.easy-query</groupId>
<artifactId>sql-springboot-starter</artifactId>
<version>1.10.31</version>
</dependency>
<!--mybatis-mp ORM-->
<dependency>
<groupId>cn.mybatis-mp</groupId>
<artifactId>mybatis-mp-spring-boot-starter</artifactId>
<version>1.4.1-spring-boot3</version>
</dependency>
<!-- ORM JPA -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<artifactId>antlr4-runtime</artifactId>
<groupId>org.antlr</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- dbVisitor for springboot start-->
<dependency>
<groupId>net.hasor</groupId>
<artifactId>dbvisitor-spring-starter</artifactId>
<version>5.4.3</version>
</dependency>
<!-- dbVisitor for springboot end-->
<!-- BeetlSql ORM start-->
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>sql-springboot-starter</artifactId>
<version>3.26.0-RELEASE</version>
</dependency>
<dependency>
<groupId>com.ibeetl</groupId>
<artifactId>beetl-springboot-starter-jdk17</artifactId>
<version>3.15.10.RELEASE</version>
<exclusions>
<exclusion>
<artifactId>antlr4-runtime</artifactId>
<groupId>org.antlr</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- BeetlSql ORM end-->
<!-- dream-orm start -->
<dependency>
<groupId>com.dream-orm</groupId>
<artifactId>dream-orm-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
<!-- dream-orm end -->
<!-- wood start -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>wood</artifactId>
<version>1.2.9</version>
</dependency>
<!-- wood end -->
<dependency>
<groupId>top.wu2020</groupId>
<artifactId>wu-easy-excel-starter</artifactId>
</dependency>
<!-- hammer-sqldb start -->
<dependency>
<groupId>cn.featherfly.hammer</groupId>
<artifactId>hammer-sqldb</artifactId>
<version>0.7.0</version>
</dependency>
<!-- hammer-sqldb end -->
<!-- qdbp-jdbc-spring start -->
<dependency>
<groupId>com.gitee.qdbp</groupId>
<artifactId>qdbp-jdbc-spring</artifactId>
<version>4.2.7</version>
</dependency>
<!-- qdbp-jdbc-spring end -->
<!-- 数据库连接池 可以不用 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.21</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>top.wu2020</groupId>
<artifactId>wu-framework-dependencies</artifactId>
<!-- 1.2.4-JDK17-SNAPSHOT 针对本此测试做了优化 -->
<!-- <version>1.2.3-JDK17</version>-->
<version>1.2.6-JDK17-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<repository>
<id>oss.snapshots</id>
<name>oss.sonatype.org</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wujiawei1207537021/spring-orm-integration-compare.git
git@gitee.com:wujiawei1207537021/spring-orm-integration-compare.git
wujiawei1207537021
spring-orm-integration-compare
spring-orm-integration-compare
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385