调整jar引入方式
This commit is contained in:
14
README.md
14
README.md
@@ -2,9 +2,6 @@
|
|||||||
|
|
||||||
## 启动设置
|
## 启动设置
|
||||||
### 金蝶Apusic应用服务器
|
### 金蝶Apusic应用服务器
|
||||||
#### 安装jar包到本地仓库
|
|
||||||
1. 进入aams-spring-boot-starter-all-2.4.0.jar所在目录(项目根目录 libs目录下)
|
|
||||||
2. 执行 mvn install:install-file -Dfile=aams-spring-boot-starter-all-2.4.0.jar -DgroupId=com.apusic -DartifactId=aams-spring-boot-starter-all -Dversion=2.4.0 -Dpackaging=jar
|
|
||||||
#### 排除tomcat(已完成)
|
#### 排除tomcat(已完成)
|
||||||
```xml
|
```xml
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -25,10 +22,10 @@
|
|||||||
<groupId>com.apusic</groupId>
|
<groupId>com.apusic</groupId>
|
||||||
<artifactId>aams-spring-boot-starter-all</artifactId>
|
<artifactId>aams-spring-boot-starter-all</artifactId>
|
||||||
<version>2.4.0</version>
|
<version>2.4.0</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/libs/aams-spring-boot-starter-all-2.4.0.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
#### 验证安装
|
|
||||||
访问maven本地仓库 XXX\repository\com\apusic,可以在对应仓库地址中找到上述的jar包,此时即表示jar包部署到本地仓库成功。
|
|
||||||
#### 设置VM参数(授权认证)
|
#### 设置VM参数(授权认证)
|
||||||
**找到Run->Edit Configuretion->Spring Boot中的项目启动类,在右边的VM options中输入 -
|
**找到Run->Edit Configuretion->Spring Boot中的项目启动类,在右边的VM options中输入 -
|
||||||
Duser.dir=xxxxxxxx , xxxxxxxx 表示 license.xml 文件所在的目录;例如:D:xxx\rsks-boot\ruoyi-framework 其中D:\xxx为项目所在目录**
|
Duser.dir=xxxxxxxx , xxxxxxxx 表示 license.xml 文件所在的目录;例如:D:xxx\rsks-boot\ruoyi-framework 其中D:\xxx为项目所在目录**
|
||||||
@@ -37,9 +34,6 @@ Duser.dir=xxxxxxxx , xxxxxxxx 表示 license.xml 文件所在的目录;例
|
|||||||
|
|
||||||
|
|
||||||
### 奇安信国密安全密码应用中间件
|
### 奇安信国密安全密码应用中间件
|
||||||
#### 安装jar包到本地仓库
|
|
||||||
1. 进入quickapi-client-java-1.5.11-SNAPSHOT-shaded.jar所在目录(项目根目录 libs目录下)
|
|
||||||
2. 执行 mvn install:install-file -Dfile=quickapi-client-java-1.5.11-SNAPSHOT-shaded.jar -DgroupId=org.quickssl -DartifactId=quickapi-client-java -Dversion=1.5.11-SNAPSHOT -Dpackaging=jar
|
|
||||||
#### 引入奇安信国密安全密码应用中间件(已完成)
|
#### 引入奇安信国密安全密码应用中间件(已完成)
|
||||||
```xml
|
```xml
|
||||||
<!-- 奇安信国密安全密码应用中间件 -->
|
<!-- 奇安信国密安全密码应用中间件 -->
|
||||||
@@ -47,7 +41,7 @@ Duser.dir=xxxxxxxx , xxxxxxxx 表示 license.xml 文件所在的目录;例
|
|||||||
<groupId>org.quickssl</groupId>
|
<groupId>org.quickssl</groupId>
|
||||||
<artifactId>quickapi-client-java</artifactId>
|
<artifactId>quickapi-client-java</artifactId>
|
||||||
<version>1.5.11-SNAPSHOT</version>
|
<version>1.5.11-SNAPSHOT</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/libs/quickapi-client-java-1.5.11-SNAPSHOT.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
#### 验证安装
|
|
||||||
访问maven本地仓库 XXX\repository\org\quickssl,可以在对应仓库地址中找到上述的jar包,此时即表示jar包部署到本地仓库成功。
|
|
||||||
@@ -125,6 +125,7 @@
|
|||||||
<version>2.5.15</version>
|
<version>2.5.15</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
|
||||||
|
<includeSystemScope>true</includeSystemScope>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
|||||||
@@ -125,6 +125,8 @@
|
|||||||
<groupId>org.quickssl</groupId>
|
<groupId>org.quickssl</groupId>
|
||||||
<artifactId>quickapi-client-java</artifactId>
|
<artifactId>quickapi-client-java</artifactId>
|
||||||
<version>1.5.11-SNAPSHOT</version>
|
<version>1.5.11-SNAPSHOT</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/libs/quickapi-client-java-1.5.11-SNAPSHOT.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -42,6 +42,8 @@
|
|||||||
<groupId>com.apusic</groupId>
|
<groupId>com.apusic</groupId>
|
||||||
<artifactId>aams-spring-boot-starter-all</artifactId>
|
<artifactId>aams-spring-boot-starter-all</artifactId>
|
||||||
<version>2.4.0</version>
|
<version>2.4.0</version>
|
||||||
|
<scope>system</scope>
|
||||||
|
<systemPath>${project.basedir}/libs/aams-spring-boot-starter-all-2.4.0.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- SpringBoot 拦截器 -->
|
<!-- SpringBoot 拦截器 -->
|
||||||
|
|||||||
Reference in New Issue
Block a user