All Downloads are FREE. Search and download functionalities are using the official Maven repository.

meteor-boot-starter-database.1.0.10.source-code.database.yml Maven / Gradle / Ivy

There is a newer version: 1.0.16
Show newest version
########################################################################################################################
spring:
  datasource:
    type: com.zaxxer.hikari.HikariDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    hikari:
      minimum-idle: 5
      idle-timeout: 600000
      maximum-pool-size: 10
      auto-commit: true
      pool-name: MyHikariCPR
      max-lifetime: 1800000
      connection-timeout: 30000
      connection-test-query: SELECT 1
########################################################################################################################
mybatis-plus:
  # 如果是放在src/main/java目录下 classpath:/com/yourpackage/*/mapper/*Mapper.xml
  # 如果是放在resource目录 classpath:/mapper/*Mapper.xml
  mapper-locations: classpath:/mapper/**/*Mapper.xml
  # 实体扫描,多个package用逗号或者分号分隔
  type-aliases-package: cn.meteor.**.entity
  # 配置参考 https://blog.csdn.net/qq_40688338/article/details/83380953
  global-config:
    db-config:
      # 全局默认主键类型
      id-type: assign_id
      # 是否开启大写命名,默认不开启
      capital-mode: false
      # 表名、是否使用下划线命名,默认数据库表使用下划线命名
      table-underline: true
      # 逻辑删除配置(下面3个配置)
      logic-delete-field: deleted
      # 逻辑已删除值,(逻辑删除下有效)
      logic-delete-value: 1
      # 逻辑未删除值,(逻辑删除下有效)
      logic-not-delete-value: 0
      # 查询条件空字符串和NULL https://mp.baomidou.com/config/#insertstrategy
      select-strategy: not_empty
      # 字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
      update-strategy: NOT_NULL
  configuration:
    # 配置返回数据库(column下划线命名&&返回java实体是驼峰命名),自动匹配无需as(没开启这个,SQL需要写as: select user_id as userId)
    map-underscore-to-camel-case: true
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
    cache-enabled: false
    # 配置JdbcTypeForNull, oracle数据库必须配置
    jdbc-type-for-null: 'null'
########################################################################################################################
# 物理分页比 mybatisPlus 逻辑分页性能高
pagehelper:
  # 分页合理化参数,默认值为false。当该参数设置为 true 时,pageNum<=0 时会查询第一页,pageNum>pages(超过总数时),会查询最后一页。默认false 时,直接根据参数进行查询。
  reasonable: true
  support-methods-arguments: true
  params: count=countSql
  row-bounds-with-count: true
  # 指定使用的数据库数据库
  helper-dialect: mysql
########################################################################################################################




© 2015 - 2024 Weber Informatics LLC | Privacy Policy