Compare commits

...

5 Commits

Author SHA1 Message Date
xiang
27fa3038f3 feat:loadbalancer 2026-03-22 11:07:49 +08:00
xiang
fe69812ba9 Merge remote-tracking branch 'origin/master' 2026-03-21 20:16:57 +08:00
xiang
bef0a1a036 feat:rpc接口调用 2026-03-21 20:16:48 +08:00
Xiang
e5357a5f70 fix:修复mp和分页插件的冲突 2026-03-20 10:55:10 +08:00
Xiang
5ab68d0e2f feat:版本控制 2026-01-05 08:43:39 +08:00
3 changed files with 28 additions and 12 deletions

15
pom.xml
View File

@@ -6,7 +6,7 @@
<groupId>com.xiang.pom</groupId>
<artifactId>xmc-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<module>xmc-web-starter</module>
@@ -26,7 +26,6 @@
<maven.compiler.target>${java.version}</maven.compiler.target>
<encoding>UTF-8</encoding>
<guava.version>16.0.1</guava.version>
<mybatis-spring-boot.version>2.3.1</mybatis-spring-boot.version>
<mybatis-plus-spring-boot.version>3.5.14</mybatis-plus-spring-boot.version>
<mysql.version>8.0.33</mysql.version>
<lombok.version>1.18.30</lombok.version>
@@ -114,12 +113,12 @@
<version>2.18.0</version>
</dependency>
<!-- 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.7</version>
</dependency>
<!-- 分页插件 与mp冲突 mp3.5.14需要新版本 而pagehelper的插件使用的是老版本的mybatis -->
<!-- <dependency>-->
<!-- <groupId>com.github.pagehelper</groupId>-->
<!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
<!-- <version>1.4.7</version>-->
<!-- </dependency>-->
<!-- 对象转换 -->
<dependency>

View File

@@ -6,10 +6,10 @@
<parent>
<groupId>com.xiang.pom</groupId>
<artifactId>xmc-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>pom</packaging>
<artifactId>xmc-auth-starter</artifactId>

View File

@@ -6,11 +6,11 @@
<parent>
<groupId>com.xiang.pom</groupId>
<artifactId>xmc-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
</parent>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<artifactId>xmc-web-starter</artifactId>
<properties>
@@ -48,6 +48,23 @@
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
<!-- 负载均衡 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
</dependency>
<!-- openfeign rpc调用-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!-- loadbalancer -->
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
</dependencies>
</project>