sqlserver yml配置文件
生活随笔
收集整理的這篇文章主要介紹了
sqlserver yml配置文件
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
server:port: XXXXservlet:context-path: /share
spring:application:name: sharedatasource:url: jdbc:sqlserver://數(shù)據(jù)庫ip:端口號;DatabaseName=數(shù)據(jù)庫名username: 用戶名password: 密碼driver-class: com.microsoft.sqlserver.jdbc.SQLServerDrivername: datasourcetype: com.alibaba.druid.pool.DruidDataSourcedruid:initial-size: 10max-active: 100max-wait: 60000min-idle: 10validation-query: SELECT 1test-on-borrow: falsetest-on-return: falsemin-evictable-idle-time-millis: 300000test-while-idle: truetime-between-eviction-runs-millis: 30000max-pool-prepared-statement-per-connection-size: 20pool-prepared-statements: truemax-open-prepared-statements: 20data:mongodb:uri: mongodb://mongodbip:端口號/mongodbservlet:multipart:max-file-size: 100MBmax-request-size: 100MBredis:host: 10.0.2.86port: 6379main:allow-bean-definition-overriding: truejackson:date-format: yyyy-MM-ddtime-zone: GMT+8serialization:write-dates-as-timestamps: false
pagehelper:reasonable: truesupport-methods-arguments: truepage-size-zero: true
mybatis:mapper-locations: classpath:mapper/*.xmltype-aliases-package: com.graphsafe.api.model.share.poconfiguration:log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
eureka:client:registerWithEureka: true #服務注冊開關fetchRegistry: true #服務發(fā)現(xiàn)開關serviceUrl: #Eureka客戶端與Eureka服務端進行交互的地址,多個中間用逗號分隔defaultZone: ${EUREKA_SERVER:http://localhost:8073/eureka/}instance:prefer-ip-address: true #將自己的ip地址注冊到Eureka服務中ip-address: ${IP_ADDRESS:127.0.0.1}instance-id: ${spring.application.name}:${server.port} #指定實例id
ribbon:MaxAutoRetries: 2 #最大重試次數(shù),當Eureka中可以找到服務,但是服務連不上時將會重試,如果eureka中找不到服務則直接走斷路器MaxAutoRetriesNextServer: 3 #切換實例的重試次數(shù)OkToRetryOnAllOperations: false #對所有操作請求都進行重試,如果是get則可以,如果是post,put等操作沒有實現(xiàn)冪等的情況下是很危險的,所以設置為falseConnectTimeout: 5000 #請求連接的超時時間ReadTimeout: 6000 #請求處理的超時時間
logging:level:com.share.mapper: debug
總結
以上是生活随笔為你收集整理的sqlserver yml配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: excel 数据导入(附工具类)
- 下一篇: java 好用的工具类