From 3c4ebb59a13acc44e59fd11f0b56d5e1032a871b Mon Sep 17 00:00:00 2001 From: Ezra Date: Wed, 29 Jan 2020 22:28:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E6=96=87=E4=BB=B6=20device-s?= =?UTF-8?q?ocket/out/production/resources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/application-development.yml | 23 ----- .../config/application-production.yml | 23 ----- .../resources/config/application-test.yml | 13 --- .../resources/config/application.yml | 83 ------------------- .../out/production/resources/logback.xml | 59 ------------- .../resources/mybatis/mybatis-config.xml | 41 --------- 6 files changed, 242 deletions(-) delete mode 100644 device-socket/out/production/resources/config/application-development.yml delete mode 100644 device-socket/out/production/resources/config/application-production.yml delete mode 100644 device-socket/out/production/resources/config/application-test.yml delete mode 100644 device-socket/out/production/resources/config/application.yml delete mode 100644 device-socket/out/production/resources/logback.xml delete mode 100644 device-socket/out/production/resources/mybatis/mybatis-config.xml diff --git a/device-socket/out/production/resources/config/application-development.yml b/device-socket/out/production/resources/config/application-development.yml deleted file mode 100644 index b503edd..0000000 --- a/device-socket/out/production/resources/config/application-development.yml +++ /dev/null @@ -1,23 +0,0 @@ -spring: - datasource: - url: jdbc:mysql://yingdiandian.mysql.rds.aliyuncs.com:3306/smart_venue?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2b8&useAffectedRows=true - username: yingdd - password: Yingdd2015 - redis: - host: 47.96.15.192 - password: - timeout: 6000 - port: 6379 - - jpa: - show-sql: true - -nettym: - url: http://192.168.1.200:8021/netty/message/send - - -door: - ip: 192.168.1.150 - port: 8000 - sn: MC-5824T28085603 - pwd: FFFFFFFF diff --git a/device-socket/out/production/resources/config/application-production.yml b/device-socket/out/production/resources/config/application-production.yml deleted file mode 100644 index 3a06e09..0000000 --- a/device-socket/out/production/resources/config/application-production.yml +++ /dev/null @@ -1,23 +0,0 @@ -spring: - datasource: - url: jdbc:mysql://127.0.0.1:3306/smart_venue?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2b8&useAffectedRows=true - username: root - password: hyty1234 - redis: - host: 127.0.0.1 - password: - timeout: 6000 - port: 6379 - - jpa: - show-sql: true - - -nettym: - url: http://127.0.0.1:8021/netty/message/send - -door: - ip: 192.168.1.150 - port: 8000 - sn: MC-5824T28085603 - pwd: FFFFFFFF \ No newline at end of file diff --git a/device-socket/out/production/resources/config/application-test.yml b/device-socket/out/production/resources/config/application-test.yml deleted file mode 100644 index c215019..0000000 --- a/device-socket/out/production/resources/config/application-test.yml +++ /dev/null @@ -1,13 +0,0 @@ -spring: - datasource: - url: jdbc:mysql://yingdiandian.mysql.rds.aliyuncs.com:3306/smart_venue?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2b8 - username: yingdd - password: Yingdd2015 - redis: - host: 121.41.101.63 - password: yingdiandian2015 - timeout: 6000 - port: 6379 - - jpa: - show-sql: true diff --git a/device-socket/out/production/resources/config/application.yml b/device-socket/out/production/resources/config/application.yml deleted file mode 100644 index 7d3fc05..0000000 --- a/device-socket/out/production/resources/config/application.yml +++ /dev/null @@ -1,83 +0,0 @@ -server: -# port: 8093 - port: 8000 -debug: true - -app: - accessToken: - expires: 7200 - - -spring: - http: - multipart: - max-file-size: 40MB - max-request-size: 40MB - enabled: true - profiles: - include: - -development - -test - -production - active: development - - datasource: - driver-class-name: com.mysql.cj.jdbc.Driver - - # 数据库连接池配置 - druid: - filters: stat - initialSize: 1 - minIdle: 1 - maxActive: 40 - maxWait: 600000 - timeBetweenEvictionRunsMillis: 60000 - minEvictableIdleTimeMillis: 300000 - validationQuery: SELECT 'x' - testWhileIdle: true - testOnBorrow: false - testOnReturn: false - poolPreparedStatements: true - maxPoolPreparedStatementPerConnectionSize: 20 - WebStatFilter: - enabled: false - urlPattern: - exclusions: - sessionStatMaxCount: - sessionStatEnable: - principalSessionName: - principalCookieName: - profileEnable: - StatViewServlet: - enabled: true - urlPattern: /druid/* - resetEnable: true - loginUsername: druid - loginPassword: druid - allow: - deny: - aop: - auto: true - mvc: - log-resolved-exception: false - jackson: - default-property-inclusion: non_null - -# MyBatis Configuration -mybatis: - type-aliases-package: com.ydd.oms.entity - config-location: classpath:mybatis/mybatis-config.xml - mapper-locations: classpath:mybatis/mapper/*/*.xml - -oss: - accessKeyId: LTAIALhDnclBYATv - accessKeySecret: 4i9zJ5aDljBkFVRbp8pazK1l21XS79 - protocol: http - name: yingdd - endPoint: http://oss-cn-hangzhou.aliyuncs.com - url: https://yingdd.oss-cn-hangzhou.aliyuncs.com/ - -face: - url: 192.168.1.111 - account: test@test.com - pwd: 123456 \ No newline at end of file diff --git a/device-socket/out/production/resources/logback.xml b/device-socket/out/production/resources/logback.xml deleted file mode 100644 index efddee0..0000000 --- a/device-socket/out/production/resources/logback.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - %date{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - ${LOG_HOME}/api.log - - ${LOG_HOME}/api-sys.%d{yyyy-MM-dd}.log - 30 - - - - %date{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n - - - - - - - ${LOG_HOME}/api-spring.log - - - ${LOG_HOME}/api-spring-%d{yyyy-MM-dd_HH}.%i.log - - - 10MB - - - - - %d{HH:mm:ss.SSS},%msg%n - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/device-socket/out/production/resources/mybatis/mybatis-config.xml b/device-socket/out/production/resources/mybatis/mybatis-config.xml deleted file mode 100644 index 0ad92f3..0000000 --- a/device-socket/out/production/resources/mybatis/mybatis-config.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file