From a8553f9ef7e165b6348243af91caad1a987f8f9c Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期三, 03 九月 2025 17:49:52 +0800 Subject: [PATCH] fix: 修复轨迹查询报错问题。 更换了接口地址和增加请求参数 --- ruoyi-admin/pom.xml | 31 +++++++++++++++++++++++++++---- 1 files changed, 27 insertions(+), 4 deletions(-) diff --git a/ruoyi-admin/pom.xml b/ruoyi-admin/pom.xml index e4ff18f..624a352 100644 --- a/ruoyi-admin/pom.xml +++ b/ruoyi-admin/pom.xml @@ -44,8 +44,7 @@ </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> - <artifactId>mssql-jdbc</artifactId> - <version>9.4.0.jre8</version> + <artifactId>mssql-jdbc</artifactId> </dependency> <!-- 鏍稿績妯″潡--> <dependency> @@ -77,9 +76,9 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> - <version>2.5.15</version> + <version>2.5.14</version> <configuration> - <fork>true</fork> <!-- 濡傛灉娌℃湁璇ラ厤缃紝devtools涓嶄細鐢熸晥 --> + <mainClass>com.ruoyi.RuoYiApplication</mainClass> </configuration> <executions> <execution> @@ -102,4 +101,28 @@ <finalName>${project.artifactId}</finalName> </build> + <profiles> + <profile> + <id>dev</id> + <properties> + <profiles.active>dev</profiles.active> + </properties> + <activation> + <activeByDefault>true</activeByDefault> + </activation> + </profile> + <profile> + <id>test</id> + <properties> + <profiles.active>test</profiles.active> + </properties> + </profile> + <profile> + <id>prod</id> + <properties> + <profiles.active>prod</profiles.active> + </properties> + </profile> + </profiles> + </project> \ No newline at end of file -- Gitblit v1.9.1