2026-06-05 18:19:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## 启动设置
|
|
|
|
|
|
### 金蝶Apusic应用服务器
|
|
|
|
|
|
#### 排除tomcat(已完成)
|
|
|
|
|
|
```xml
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
```
|
|
|
|
|
|
#### 引入金蝶Apusic应用服务器(已完成)
|
|
|
|
|
|
```xml
|
|
|
|
|
|
<!-- 金蝶Apusic应用服务器 -->
|
|
|
|
|
|
<dependency>
|
2026-06-05 18:51:26 +08:00
|
|
|
|
<groupId>com.apusic</groupId>
|
|
|
|
|
|
<artifactId>aams-spring-boot-starter-all</artifactId>
|
|
|
|
|
|
<version>2.4.0</version>
|
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
|
<systemPath>${project.basedir}/libs/aams-spring-boot-starter-all-2.4.0.jar</systemPath>
|
2026-06-05 18:19:53 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
```
|
|
|
|
|
|
#### 设置VM参数(授权认证)
|
|
|
|
|
|
**找到Run->Edit Configuretion->Spring Boot中的项目启动类,在右边的VM options中输入 -
|
|
|
|
|
|
Duser.dir=xxxxxxxx , xxxxxxxx 表示 license.xml 文件所在的目录;例如:D:xxx\rsks-boot\ruoyi-framework 其中D:\xxx为项目所在目录**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 奇安信国密安全密码应用中间件
|
|
|
|
|
|
#### 引入奇安信国密安全密码应用中间件(已完成)
|
|
|
|
|
|
```xml
|
|
|
|
|
|
<!-- 奇安信国密安全密码应用中间件 -->
|
|
|
|
|
|
<dependency>
|
2026-06-05 18:51:26 +08:00
|
|
|
|
<groupId>org.quickssl</groupId>
|
|
|
|
|
|
<artifactId>quickapi-client-java</artifactId>
|
|
|
|
|
|
<version>1.5.11-SNAPSHOT</version>
|
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
|
<systemPath>${project.basedir}/libs/quickapi-client-java-1.5.11-SNAPSHOT.jar</systemPath>
|
2026-06-05 18:19:53 +08:00
|
|
|
|
</dependency>
|
2026-06-05 18:51:26 +08:00
|
|
|
|
```
|