application.properties
1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
spring.application.name=iot-api
spring.profiles.active=dev
spring.datasource.username=thd
spring.datasource.password=pmd19930415A
spring.datasource.url=jdbc:sqlserver://60.190.202.57:14333;database=test
spring.datasource.driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver
mybatis.config-location=classpath:mybatis-config.xml
mybatis.mapper-locations=classpath:/mapper/*.xml
mybatis.type-aliases-package=com.sincre.springboot.model
#eureka.instance.hostname=localhost
#不向注册中心注册
eureka.client.register-with-ecueka=false
#不去检索服务
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://121.40.109.21:8761/eureka/
# http://121.40.109.21:8761/eureka/,http://121.40.109.21:8762/eureka/
#Redis 配置
# Redis数据库索引(默认为0)
spring.redis.database=0
# Redis服务器地址
spring.redis.host=127.0.0.1
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=20
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=10
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=1000