使用 金蝶Apusic应用服务器 内嵌jar 启动服务

This commit is contained in:
马宝龙
2026-06-05 18:19:53 +08:00
parent c0816c0a3b
commit c84844ea5b
11 changed files with 659 additions and 360 deletions

View File

@@ -18,9 +18,30 @@
<dependencies>
<!-- SpringBoot Web容器 -->
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
</exclusion>
<exclusion>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 金蝶Apusic应用服务器 -->
<dependency>
<groupId>com.apusic</groupId>
<artifactId>aams-spring-boot-starter-all</artifactId>
<version>2.4.0</version>
</dependency>
<!-- SpringBoot 拦截器 -->