novel-cloud/novel-common/src/main/resources/application-common.yml

34 lines
725 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 将所有数字转为 String 类型返回,避免前端数据精度丢失的问题
jackson:
generator:
write-numbers-as-strings: true
mybatis:
configuration:
#自动将数据库带下划线的表字段值映射到Java类的驼峰字段上
map-underscore-to-camel-case: true
mapper-locations: classpath*:mybatis/mapping/*.xml
type-aliases-package: com.java2nb.novel.*.entity
logging:
config: classpath:logback-boot.xml
spring:
main:
allow-bean-definition-overriding: true
feign:
httpclient:
enabled: true
#关掉mq的健康检查防止某些没有用到mq的服务启动报错个别服务如需mq监控单独开启
management:
health:
rabbit:
enabled: false