|
@@ -0,0 +1,79 @@
|
|
|
|
+server:
|
|
|
|
+ port: 10064
|
|
|
|
+spring:
|
|
|
|
+ application:
|
|
|
|
+ name: huimv-env-produce
|
|
|
|
+
|
|
|
|
+ datasource:
|
|
|
|
+ url: jdbc:mysql://192.168.1.112:3306/huimv-produce-platform?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
|
|
|
|
+ username: qingshan
|
|
|
|
+ password: qingshan@2022
|
|
|
|
+ driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
|
+ jpa:
|
|
|
|
+ show-sql: true
|
|
|
|
+ database: mysql
|
|
|
|
+ hibernate:
|
|
|
|
+ ddl-auto: none
|
|
|
|
+ database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
|
|
|
|
+ open-in-view: true
|
|
|
|
+
|
|
|
|
+ #配置rabbitMq 服务器
|
|
|
|
+# rabbitmq:
|
|
|
|
+# host: 10.0.0.4
|
|
|
|
+# port: 5672
|
|
|
|
+# username: huimv
|
|
|
|
+# password: hm123456
|
|
|
|
+# #虚拟host 可以不设置,使用server默认host
|
|
|
|
+# virtual-host: /
|
|
|
|
+# rabbitmq:
|
|
|
|
+# host: 192.168.1.82
|
|
|
|
+# port: 5672
|
|
|
|
+# username: admin
|
|
|
|
+# password: admin
|
|
|
|
+# #虚拟host 可以不设置,使用server默认host
|
|
|
|
+# virtual-host: /env
|
|
|
|
+
|
|
|
|
+ #确认消息已发送到交换机(Exchange)
|
|
|
|
+# publisher-confirms: true #(过时、弃用)
|
|
|
|
+# publisher-confirm-type: correlated
|
|
|
|
+# #确认消息已发送到队列(Queue)
|
|
|
|
+# publisher-returns: true
|
|
|
|
+
|
|
|
|
+ #redis
|
|
|
|
+ redis:
|
|
|
|
+ host: 122.112.224.199
|
|
|
|
+ port: 6379
|
|
|
|
+ password: hm123456
|
|
|
|
+
|
|
|
|
+mybatis-plus:
|
|
|
|
+ configuration:
|
|
|
|
+ log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
|
|
+ #server:
|
|
|
|
+# port: 9110
|
|
|
|
+#spring:
|
|
|
|
+# application:
|
|
|
|
+# name: huimv-hy-autoGetData
|
|
|
|
+#
|
|
|
|
+# datasource:
|
|
|
|
+## url: jdbc:mysql://47.98.175.112:3306/huimv_ql_farm_haiyan?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
|
|
|
|
+# # url: jdbc:mysql://36.22.189.214:3306/huimv_ql_farm?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
|
|
|
|
+# url: jdbc:mysql://192.168.1.7:3306/huimv_ql_farm?useUnicode=true&characterEncoding=UTF-8&useSSL=false&autoReconnect=true&serverTimezone=Asia/Shanghai
|
|
|
|
+# username: root
|
|
|
|
+# password: hm123456
|
|
|
|
+# driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
|
+# jpa:
|
|
|
|
+# properties:
|
|
|
|
+# hibernate:
|
|
|
|
+# enable_lazy_load_no_trans: true
|
|
|
|
+# show-sql: true
|
|
|
|
+# database: mysql
|
|
|
|
+# hibernate:
|
|
|
|
+# ddl-auto: update
|
|
|
|
+# database-platform: org.hibernate.dialect.MySQL5InnoDBDialect
|
|
|
|
+# open-in-view: true
|
|
|
|
+management:
|
|
|
|
+ endpoints:
|
|
|
|
+ web:
|
|
|
|
+ exposure:
|
|
|
|
+ include: "*" # * 在yaml 文件属于关键字,所以需要加引号
|
|
|
|
+
|