添加测试配置文件和省公司短信依赖
- 新增 bootstrap-material_mall_test.yml 测试配置文件 - 添加省公司短信sms-util依赖- 更新pom.xml文件,包含新增的短信依赖包
This commit is contained in:
parent
4f6c7d6b1a
commit
610c290d1f
|
|
@ -17,6 +17,13 @@
|
|||
|
||||
<dependencies>
|
||||
|
||||
<!-- 省公司短信sms-util -->
|
||||
<dependency>
|
||||
<groupId>com.ahsbd</groupId>
|
||||
<artifactId>sms-util</artifactId>
|
||||
<systemPath>${project.basedir}/src/main/resources/lib/sms-util-1.0.jar</systemPath>
|
||||
</dependency>
|
||||
|
||||
<!--加密依赖包-->
|
||||
<dependency>
|
||||
<groupId>com.github.ulisesbocchio</groupId>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
# Tomcat
|
||||
server:
|
||||
port: 18589
|
||||
|
||||
# Spring
|
||||
spring:
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
# 服务注册地址
|
||||
server-addr: 14.103.246.124:8848
|
||||
# server-addr: 192.168.1.2:8848
|
||||
namespace: material_mall
|
||||
ip: 192.168.0.69
|
||||
config:
|
||||
# 配置中心地址
|
||||
server-addr: 14.103.246.124:8848
|
||||
# server-addr: 192.168.1.2:8848
|
||||
namespace: material_mall
|
||||
# 配置文件格式
|
||||
file-extension: yml
|
||||
# 共享配置
|
||||
shared-configs:
|
||||
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
||||
|
||||
#加密组件
|
||||
jasypt:
|
||||
encryptor:
|
||||
password: Encrypt
|
||||
|
||||
mybatis:
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
Binary file not shown.
Loading…
Reference in New Issue