spring:
  application:
    name: ${vhGrpcBuilder_firstName}-${vhGrpcBuilder_projectName}-svc-server
  datasource:
    url: "jdbc:mysql://192.168.1.11:23306/viewchaindb?useUnicode=true&rewriteBatchedStatements=true&useConfigs=maxPerformance&useSSL=false"
    username: viewchaindev
    password: 6emE2AChaS=e
    driver-class-name: com.mysql.jdbc.Driver
    tomcat:
      max-wait: 10000
      minIdle: 0
      maxIdle: 10
      max-active: 20
      test-on-borrow: true
      test-while-idle: true
      validation-query: select 1
  redis:
    host: 192.168.1.3
    port: 32380
    password: K5re9U#mX@
    database: 0
    pool:
      max-active: 20
      max-idle: 20
      min-idle: 0
  rabbitmq:
    host: 192.168.1.12
    port: 9003
    username: rabbituser
    password: 7aspeSagagu8
    virtual-host: /
    cache:
      connection:
        mode: channel
      channel:
        size: 20
    listener:
      simple:
        concurrency: 3
        max-concurrency: 10

grpc:
  server:
    port: 9093
    
mybatis:
  mapper-locations: 
    classpath:mapper/*.xml
  type-aliases-package: 
    ${vhGrpcBuilder_packageName}.svc.${vhGrpcBuilder_projectName}.domain
logging: 
  level:
    tk:
      mybatis:
        pagehelper:
          mapper: TRACE

pagehelper:
    helperDialect: mysql
    reasonable: true
    supportMethodsArguments: true
    params: count=countSql
    