正在显示
33 个修改的文件
包含
761 行增加
和
0 行删除
application-dev.yml
0 → 100644
1 | +# 加解密根密码 | ||
2 | +jasypt: | ||
3 | + encryptor: | ||
4 | + password: trobs #根密码 | ||
5 | +# redis 相关 | ||
6 | +spring: | ||
7 | + redis: | ||
8 | + host: trobsqa.aukeyit.com | ||
9 | + port: 6379 | ||
10 | + password: | ||
11 | + database: 14 | ||
12 | + rabbitmq: | ||
13 | + host: 10.1.1.60 | ||
14 | + port: 5672 | ||
15 | + username: aukeyit | ||
16 | + password: Aukey@2018 | ||
17 | + servlet: | ||
18 | + multipart: | ||
19 | + max-file-size: 1000MB | ||
20 | + max-request-size: 1000MB | ||
21 | + | ||
22 | +# 暴露监控端点 | ||
23 | +management: | ||
24 | + endpoints: | ||
25 | + web: | ||
26 | + exposure: | ||
27 | + include: '*' | ||
28 | + | ||
29 | +# feign 配置 | ||
30 | +feign: | ||
31 | + hystrix: | ||
32 | + enabled: true | ||
33 | + okhttp: | ||
34 | + enabled: true | ||
35 | + httpclient: | ||
36 | + enabled: false | ||
37 | + client: | ||
38 | + config: | ||
39 | + feignName: | ||
40 | + connectTimeout: 10000 | ||
41 | + readTimeout: 10000 | ||
42 | + compression: | ||
43 | + request: | ||
44 | + enabled: true | ||
45 | + response: | ||
46 | + enabled: true | ||
47 | +# hystrix If you need to use ThreadLocal bound variables in your RequestInterceptor`s | ||
48 | +# you will need to either set the thread isolation strategy for Hystrix to `SEMAPHORE or disable Hystrix in Feign. | ||
49 | +hystrix: | ||
50 | + command: | ||
51 | + default: | ||
52 | + execution: | ||
53 | + isolation: | ||
54 | + strategy: SEMAPHORE | ||
55 | + thread: | ||
56 | + timeoutInMilliseconds: 60000 | ||
57 | + shareSecurityContext: true | ||
58 | + | ||
59 | +#请求处理的超时时间 | ||
60 | +ribbon: | ||
61 | + ReadTimeout: 10000 | ||
62 | + ConnectTimeout: 10000 | ||
63 | + | ||
64 | +# mybaits-plus配置 | ||
65 | +mybatis-plus: | ||
66 | + # MyBatis Mapper所对应的XML文件位置 | ||
67 | + mapper-locations: classpath:/mapper/**/*Mapper.xml | ||
68 | + global-config: | ||
69 | + # 自动刷新Mapper对应的XML文件 | ||
70 | + refresh: true | ||
71 | + # 关闭MP3.0自带的banner | ||
72 | + banner: false | ||
73 | + db-config: | ||
74 | + # 主键类型 0:数据库ID自增 1.未定义 2.用户输入 3 id_worker 4.uuid 5.id_worker字符串表示 | ||
75 | + id-type: 0 | ||
76 | + #字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断" | ||
77 | + field-strategy: 1 | ||
78 | + # 默认数据库表下划线命名 | ||
79 | + table-underline: true | ||
80 | + # 逻辑删除配置 | ||
81 | + # 逻辑删除全局值(1表示已删除,这也是Mybatis Plus的默认配置) | ||
82 | + logic-delete-value: 1 | ||
83 | + # 逻辑未删除全局值(0表示未删除,这也是Mybatis Plus的默认配置) | ||
84 | + logic-not-delete-value: 0 | ||
85 | + configuration: | ||
86 | + map-underscore-to-camel-case: true | ||
87 | + | ||
88 | +#swagger公共信息 | ||
89 | +swagger: | ||
90 | + title: Trobs Swagger API | ||
91 | + description: 益源ERP开放API说明文档 | ||
92 | + version: 2.9.2 | ||
93 | + license: Powered By Trobs | ||
94 | + licenseUrl: http://www.trobs.com/ | ||
95 | + terms-of-service-url: http://www.trobs.com/ | ||
96 | + host: 192.168.29.13 | ||
97 | + contact: | ||
98 | + name: Aukey IT | ||
99 | + email: tslcarmack@gmail.com | ||
100 | + url: http://www.trobs.com/ | ||
101 | + authorization: | ||
102 | + name: Trobs OAuth | ||
103 | + auth-regex: ^.*$ | ||
104 | + authorization-scope-list: | ||
105 | + - scope: server | ||
106 | + description: server all | ||
107 | + token-url-list: | ||
108 | + - http://trobs-auth/oauth/token | ||
109 | + | ||
110 | +## spring security 配置 | ||
111 | +security: | ||
112 | + oauth2: | ||
113 | + client: | ||
114 | + # 默认放行url,如果子模块重写这里的配置就会被覆盖 | ||
115 | + ignore-urls: | ||
116 | + #- '/actuator/**' | ||
117 | + - '/v2/api-docs' | ||
118 | + - '/swagger**' | ||
119 | + - '/swagger**/**' | ||
120 | + - '/webjars/springfox-swagger-ui/**' | ||
121 | + resource: | ||
122 | + loadBalanced: true | ||
123 | + token-info-uri: http://trobs-auth/oauth/check_token | ||
124 | +##首页 | ||
125 | +trobs: | ||
126 | + index: http://trobs.aukeyit.com | ||
127 | +##ftp服务器 | ||
128 | +aukey: | ||
129 | + ftp: | ||
130 | + host: 10.1.9.59 | ||
131 | + port: 21 | ||
132 | + username: yuanli | ||
133 | + password: yuanli@159 | ||
134 | + binaryTransfer: true | ||
135 | + localActive: true | ||
136 | + | ||
137 | + |
trobs-activiti-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(D8A47ZqlJYzqhABUZ/xt4SI8WfhdrOVE) | ||
6 | + client-secret: ENC(D8A47ZqlJYzqhABUZ/xt4SI8WfhdrOVE) | ||
7 | + scope: server | ||
8 | + ignore-urls: | ||
9 | + - '/actuator/**' | ||
10 | + - '/v2/api-docs' | ||
11 | + - '/service/**' | ||
12 | + - '/editor-app/**' | ||
13 | + - '/task/view/*' | ||
14 | + - '/process/resource/**' | ||
15 | + - '/modeler.html' | ||
16 | +spring: | ||
17 | + autoconfigure: | ||
18 | + exclude: org.activiti.spring.boot.SecurityAutoConfiguration | ||
19 | + activiti: | ||
20 | + check-process-definitions: false | ||
21 | + datasource: | ||
22 | + type: com.zaxxer.hikari.HikariDataSource | ||
23 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
24 | + username: trobs | ||
25 | + password: dfU76$N(kp | ||
26 | + url: jdbc:mysql://10.1.1.86:3306/trobs_ac?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true |
trobs-auth-dev.yml
0 → 100644
1 | +# 数据源 | ||
2 | +spring: | ||
3 | + datasource: | ||
4 | + type: com.zaxxer.hikari.HikariDataSource | ||
5 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
6 | + username: trobs | ||
7 | + password: dfU76$N(kp | ||
8 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8 | ||
9 | + freemarker: | ||
10 | + allow-request-override: false | ||
11 | + allow-session-override: false | ||
12 | + cache: true | ||
13 | + charset: UTF-8 | ||
14 | + check-template-location: true | ||
15 | + content-type: text/html | ||
16 | + enabled: true | ||
17 | + expose-request-attributes: false | ||
18 | + expose-session-attributes: false | ||
19 | + expose-spring-macro-helpers: true | ||
20 | + prefer-file-system-access: true | ||
21 | + suffix: .ftl | ||
22 | + template-loader-path: classpath:/templates/ |
trobs-business-basesetup-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(YnMAwM39eIVYDUqehHSmdP/2Wcy0fGXGI21p4fKaUuZJEj2RssD7nw==) | ||
6 | + client-secret: ENC(YnMAwM39eIVYDUqehHSmdP/2Wcy0fGXGI21p4fKaUuZJEj2RssD7nw==) | ||
7 | + scope: server | ||
8 | + # 默认放行url,子模块重写时application-dev.yml中的公共配置会被覆盖,所以要把公共配置中的放行url再写一次 | ||
9 | +# ignore-urls: | ||
10 | +# - '/bsewarehousetype/**' | ||
11 | + | ||
12 | +# 数据源配置 | ||
13 | +spring: | ||
14 | + datasource: | ||
15 | + type: com.zaxxer.hikari.HikariDataSource | ||
16 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
17 | + username: trobs | ||
18 | + password: dfU76$N(kp | ||
19 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
20 | + resources: | ||
21 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-cockpit-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(OjrrhBd8+O+pZAfFv0L1FRPimfF/HEJUDrguOhTKLZU=) | ||
6 | + client-secret: ENC(OjrrhBd8+O+pZAfFv0L1FRPimfF/HEJUDrguOhTKLZU=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs_report?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-customs.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(AD9hQaPSRKmmXTPLBW1HOCGGWU19CckQwuHfXFztfYs=) | ||
6 | + client-secret: ENC(AD9hQaPSRKmmXTPLBW1HOCGGWU19CckQwuHfXFztfYs=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-declarecustoms-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(ZOiQwLH080UVaC4kvGat3aR7VMJVGcZfXv+blMCMpCdnxh7w9RP6Hg==) | ||
6 | + client-secret: ENC(ZOiQwLH080UVaC4kvGat3aR7VMJVGcZfXv+blMCMpCdnxh7w9RP6Hg==) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-demo.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-download-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ | ||
18 | + | ||
19 | + | ||
20 | + |
trobs-business-finance-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(fHaeVSlARUVMLLRv0SrFKLN02MiZRIOQlZftJrLXuiY=) | ||
6 | + client-secret: ENC(fHaeVSlARUVMLLRv0SrFKLN02MiZRIOQlZftJrLXuiY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-monitor-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-product-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(fHaeVSlARUVMLLRv0SrFKLN02MiZRIOQlZftJrLXuiY=) | ||
6 | + client-secret: ENC(fHaeVSlARUVMLLRv0SrFKLN02MiZRIOQlZftJrLXuiY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-purchase-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(mCO495FovYwxqNMIob1vl+qiFK/8ftFKV5uJIPEDy4w=) | ||
6 | + client-secret: ENC(mCO495FovYwxqNMIob1vl+qiFK/8ftFKV5uJIPEDy4w=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-related.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(ING0+zL3mVgUORU8fWs3YMaMDY1its4IN3/pswLRhQU=) | ||
6 | + client-secret: ENC(ING0+zL3mVgUORU8fWs3YMaMDY1its4IN3/pswLRhQU=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-report-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(Vsyi4k1F0BgEvvfwxpbaOx3h1ZlHObYNNWtgzms8hCA=) | ||
6 | + client-secret: ENC(Vsyi4k1F0BgEvvfwxpbaOx3h1ZlHObYNNWtgzms8hCA=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-sealSample-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(gRXuU96i5d26oRxcLQD4CHMoOaox0fCFhC9aL2iNjlozSnLfqxE0KA==) | ||
6 | + client-secret: ENC(gRXuU96i5d26oRxcLQD4CHMoOaox0fCFhC9aL2iNjlozSnLfqxE0KA==) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ | ||
18 | + | ||
19 | +environment: | ||
20 | + test: | ||
21 | + value: dev |
trobs-business-stock-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-supplier-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(wQrxSDoLroNh3TlORjKvKiTHIa/4HLpQQ9CbX5RCMlk=) | ||
6 | + client-secret: ENC(wQrxSDoLroNh3TlORjKvKiTHIa/4HLpQQ9CbX5RCMlk=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-test.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(HLXkcPxyqZcr5/PyDxEHNtE22JV9foJstaKu4L6bpUI=) | ||
6 | + client-secret: ENC(HLXkcPxyqZcr5/PyDxEHNtE22JV9foJstaKu4L6bpUI=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-transfer-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(MzmdclxyGCEYwE/dnje59KUobaW91Sjd4myi9GLH+yE=) | ||
6 | + client-secret: ENC(MzmdclxyGCEYwE/dnje59KUobaW91Sjd4myi9GLH+yE=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-warehouse-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(sE4YEEBRxfP2UmSjgtltpq651316A0VtahL04wpYG659AQYATDGy/g==) | ||
6 | + client-secret: ENC(sE4YEEBRxfP2UmSjgtltpq651316A0VtahL04wpYG659AQYATDGy/g==) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-business-weixin-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ | ||
18 | +#微信配置(物流信息推送) | ||
19 | +weixin: | ||
20 | + gettoken: https://qyapi.weixin.qq.com/cgi-bin/gettoken | ||
21 | + sendmessage: https://qyapi.weixin.qq.com/cgi-bin/message/send | ||
22 | + notify: | ||
23 | + head: 消息通知 | ||
24 | + culture: 付出 简单 开放 | ||
25 | + sysname: 猿人创新 原力ERP | ||
26 | + url: http://trobs.aukeyit.com | ||
27 | + tail: 前往原力 |
trobs-codegen-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(9VO7qHAzPkVkSEYMDLVJxA==) | ||
6 | + client-secret: ENC(9VO7qHAzPkVkSEYMDLVJxA==) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ | ||
18 | + | ||
19 | +#smb文件服务器地址 | ||
20 | +aukey: | ||
21 | + smb: | ||
22 | + url: smb://aukeyit:aukeyit2016@10.1.1.186/files | ||
23 | + ftp: | ||
24 | + host: 10.1.2.165 | ||
25 | + port: 21 | ||
26 | + username: yuanli | ||
27 | + password: yuanli@159 |
trobs-gateway-dev.yml
0 → 100644
trobs-lcn-demo1-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ | ||
18 | + | ||
19 | +environment: | ||
20 | + test: dev | ||
21 | + |
trobs-lcn-demo2-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-lcn-demo3-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
6 | + client-secret: ENC(NlpJuAsYk0XcxpCEGP0TXZOfcqSyasSRspEFLWimxbY=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-monitor-dev.yml
0 → 100644
1 | +spring: | ||
2 | + # 安全配置 | ||
3 | + security: | ||
4 | + user: | ||
5 | + name: ENC(IQrPwkxzG8uwE7Oy9UEM0g==) # trobs | ||
6 | + password: ENC(IQrPwkxzG8uwE7Oy9UEM0g==) # trobs | ||
7 | + boot: | ||
8 | + admin: | ||
9 | + ui: | ||
10 | + resource-locations: 'classpath:/ui/,classpath:/static/' | ||
11 | + template-location: 'classpath:/ui/' | ||
12 | + title: 'trobs 服务状态监控' | ||
13 | + brand: 'trobs 服务状态监控' |
trobs-report-stock-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(U2RgKK76tZIVR2iCW/KAs2uaZWgNxlheBqKoD1+0KvU=) | ||
6 | + client-secret: ENC(U2RgKK76tZIVR2iCW/KAs2uaZWgNxlheBqKoD1+0KvU=) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs_report?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-tx-manager-dev.yml
0 → 100644
1 | +# 页面配置 | ||
2 | +spring: | ||
3 | + mvc: | ||
4 | + static-path-pattern: /** | ||
5 | + resources: | ||
6 | + static-locations: classpath:/static/ | ||
7 | + | ||
8 | + | ||
9 | +# LCN 配置 | ||
10 | +tm: | ||
11 | + transaction: | ||
12 | + netty: | ||
13 | + delaytime: 5 # 客户端链接最大通讯时间 (秒) | ||
14 | + hearttime: 15 # 客户端心跳时间 (秒) | ||
15 | + redis: | ||
16 | + savemaxtime: 30 # redis 保存时间 (秒) | ||
17 | + socket: | ||
18 | + port: 9998 # 通讯端口 | ||
19 | + maxconnection: 1000 #最大链接数 | ||
20 | + compensate: | ||
21 | + auto: false #是否自动补偿 | ||
22 | + notifyUrl: http://ip:port/path #补偿结果通知(配消息总线里面) | ||
23 | + tryTime: 30 # z再次重试时间间隔 | ||
24 | + maxWaitTime: 5000 # 请求超时的最大时间 (毫秒) |
trobs-upms-biz-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(c5ebVTRN5xEzRooPfOtZ0w==) | ||
6 | + client-secret: ENC(c5ebVTRN5xEzRooPfOtZ0w==) | ||
7 | + scope: server | ||
8 | + # 默认放行url,子模块重写时application-dev.yml中的公共配置会被覆盖,所以要把公共配置中的放行url再写一次 | ||
9 | + ignore-urls: | ||
10 | + # - '/actuator/**' | ||
11 | + - '/v2/api-docs' | ||
12 | + - '/user/info/*' | ||
13 | + - '/social/info/*' | ||
14 | + - '/social/getsocialbytype/*' | ||
15 | + - '/mobile/*' | ||
16 | + - '/log/save' | ||
17 | + - '/swagger**' | ||
18 | + - '/swagger**/**' | ||
19 | + - '/webjars/springfox-swagger-ui/**' | ||
20 | + | ||
21 | +# 数据源 | ||
22 | +spring: | ||
23 | + datasource: | ||
24 | + type: com.zaxxer.hikari.HikariDataSource | ||
25 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
26 | + username: trobs | ||
27 | + password: dfU76$N(kp | ||
28 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8&allowMultiQueries=true | ||
29 | + | ||
30 | +# swagger相关配置,覆盖全局配置 | ||
31 | +swagger: | ||
32 | + authorization: | ||
33 | + authorization-scope-list: | ||
34 | + - scope: 'server' | ||
35 | + description: 'server all' | ||
36 | + - scope: 'read' | ||
37 | + description: 'read all' | ||
38 | + - scope: 'write' | ||
39 | + description: 'access all' | ||
40 | +# Logger Config | ||
41 | +logging: | ||
42 | + level: | ||
43 | + com.trob4cloud.trobs.admin.mapper: debug |
trobs-xxl-stock-dev.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(T7fA4fKtYLZSIBZ143ZQt1P+y2ynbKe3) | ||
6 | + client-secret: ENC(T7fA4fKtYLZSIBZ143ZQt1P+y2ynbKe3) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
trobs-xxl-stock.yml
0 → 100644
1 | +## spring security 配置 | ||
2 | +security: | ||
3 | + oauth2: | ||
4 | + client: | ||
5 | + client-id: ENC(T7fA4fKtYLZSIBZ143ZQt1P+y2ynbKe3) | ||
6 | + client-secret: ENC(T7fA4fKtYLZSIBZ143ZQt1P+y2ynbKe3) | ||
7 | + scope: server | ||
8 | +# 数据源配置 | ||
9 | +spring: | ||
10 | + datasource: | ||
11 | + type: com.zaxxer.hikari.HikariDataSource | ||
12 | + driver-class-name: com.mysql.cj.jdbc.Driver | ||
13 | + username: trobs | ||
14 | + password: dfU76$N(kp | ||
15 | + url: jdbc:mysql://10.1.1.86:3306/trobs?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8 | ||
16 | + resources: | ||
17 | + static-locations: classpath:/static/,classpath:/views/ |
-
请 注册 或 登录 后发表评论