Files
ks/README.md
2026-06-05 18:51:26 +08:00

47 lines
1.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 启动设置
### 金蝶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>
<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>
</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>
<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>
</dependency>
```