| 1234567891011121314151617181920212223242526 |
- spring:
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://localhost:28571/crm_golden?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC&allowMultiQueries=true&useSSL=false
- username: root
- password: NSH01Y0GTmUNjgg6xw80qg==
- jpa:
- database: MYSQL
- hibernate:
- naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
- show-sql: true
- activemq:
- broker-url: tcp://localhost:61616
- redis:
- host: 127.0.0.1
- eureka:
- client:
- serviceUrl:
- defaultZone: http://admin:admin123456@localhost:7000/eureka
- web:
- upload-path: ../upload
- logging:
- config: classpath:logback-prod.xml
- mybatis:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|