Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
datax-cloud
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄营
datax-cloud
Commits
cf3f68f9
Commit
cf3f68f9
authored
Dec 08, 2020
by
yuwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
项目初始化
parent
9031f4e6
Hide whitespace changes
Inline
Side-by-side
Showing
38 changed files
with
170 additions
and
137 deletions
+170
-137
bootstrap.yml
datax-auth/src/main/resources/bootstrap.yml
+6
-2
bootstrap.yml
datax-config/src/main/resources/bootstrap.yml
+5
-1
datax-auth-dev.yml
datax-config/src/main/resources/config/datax-auth-dev.yml
+2
-2
datax-service-codegen-dev.yml
...g/src/main/resources/config/datax-service-codegen-dev.yml
+5
-5
datax-service-data-console-dev.yml
.../main/resources/config/datax-service-data-console-dev.yml
+5
-5
datax-service-data-integration-dev.yml
...n/resources/config/datax-service-data-integration-dev.yml
+5
-5
datax-service-data-mapping-dev.yml
.../main/resources/config/datax-service-data-mapping-dev.yml
+6
-6
datax-service-data-market-dev.yml
...c/main/resources/config/datax-service-data-market-dev.yml
+6
-6
datax-service-data-masterdata-dev.yml
...in/resources/config/datax-service-data-masterdata-dev.yml
+6
-6
datax-service-data-metadata-dev.yml
...main/resources/config/datax-service-data-metadata-dev.yml
+5
-5
datax-service-data-quality-dev.yml
.../main/resources/config/datax-service-data-quality-dev.yml
+5
-5
datax-service-data-standard-dev.yml
...main/resources/config/datax-service-data-standard-dev.yml
+5
-5
datax-service-data-visual-dev.yml
...c/main/resources/config/datax-service-data-visual-dev.yml
+5
-5
datax-service-email-dev.yml
...fig/src/main/resources/config/datax-service-email-dev.yml
+5
-5
datax-service-file-dev.yml
...nfig/src/main/resources/config/datax-service-file-dev.yml
+5
-5
datax-service-quartz-dev.yml
...ig/src/main/resources/config/datax-service-quartz-dev.yml
+6
-13
datax-service-system-dev.yml
...ig/src/main/resources/config/datax-service-system-dev.yml
+5
-5
datax-service-workflow-dev.yml
.../src/main/resources/config/datax-service-workflow-dev.yml
+7
-14
bootstrap.yml
datax-eureka/src/main/resources/bootstrap.yml
+6
-5
bootstrap.yml
datax-gateway/src/main/resources/bootstrap.yml
+6
-2
Generate.java
...rc/main/java/cn/datax/service/codegen/utils/Generate.java
+2
-2
bootstrap.yml
...e-parent/codegen-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...rket-service-integration/src/main/resources/bootstrap.yml
+3
-1
bootstrap.yml
...a-market-service-mapping/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...rent/data-market-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
.../data-masterdata-service/src/main/resources/bootstrap.yml
+3
-1
bootstrap.yml
...metadata-service-console/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...nt/data-metadata-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...ent/data-quality-service/src/main/resources/bootstrap.yml
+3
-1
bootstrap.yml
...nt/data-standard-service/src/main/resources/bootstrap.yml
+4
-1
bootstrap.yml
...rent/data-visual-service/src/main/resources/bootstrap.yml
+3
-1
bootstrap.yml
...ice-parent/email-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...vice-parent/file-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...ce-parent/quartz-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...ce-parent/system-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...-parent/workflow-service/src/main/resources/bootstrap.yml
+4
-2
bootstrap.yml
...tools/datax-tool-monitor/src/main/resources/bootstrap.yml
+4
-2
vue.config.js
datax-ui/vue.config.js
+2
-1
No files found.
datax-auth/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,14 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
# 设置使用IP
prefer-ip-address
:
true
# 设置外网IP号
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-config/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -17,13 +17,17 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
# 设置使用IP
prefer-ip-address
:
true
# 设置外网IP号
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
# 暴露监控端点
management
:
...
...
datax-config/src/main/resources/config/datax-auth-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,6 +18,6 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.mysql.cj.jdbc.Driver
url
:
jdbc:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
datax-config/src/main/resources/config/datax-service-codegen-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-console-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-integration-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-mapping-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -13,7 +13,7 @@ spring:
max-idle
:
10
# 连接池中的最大空闲连接
min-idle
:
5
# 连接池中的最小空闲连接
rabbitmq
:
host
:
localhost
host
:
61.164.216.254
port
:
5672
username
:
admin
password
:
1234@abcd
...
...
@@ -28,7 +28,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -52,14 +52,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-market-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -13,7 +13,7 @@ spring:
max-idle
:
10
# 连接池中的最大空闲连接
min-idle
:
5
# 连接池中的最小空闲连接
rabbitmq
:
host
:
localhost
host
:
61.164.216.254
port
:
5672
username
:
admin
password
:
1234@abcd
...
...
@@ -27,7 +27,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -51,14 +51,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-masterdata-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -13,7 +13,7 @@ spring:
max-idle
:
10
# 连接池中的最大空闲连接
min-idle
:
5
# 连接池中的最小空闲连接
rabbitmq
:
host
:
localhost
host
:
61.164.216.254
port
:
5672
username
:
admin
password
:
1234@abcd
...
...
@@ -28,7 +28,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -52,14 +52,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-metadata-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-quality-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-standard-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-data-visual-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-email-dev.yml
View file @
cf3f68f9
...
...
@@ -13,7 +13,7 @@ spring:
properties.mail.smtp.ssl.enable
:
true
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -29,7 +29,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -53,14 +53,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-file-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-quartz-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -17,19 +17,12 @@ spring:
driver-class-name
:
com.mysql.cj.jdbc.Driver
username
:
root
password
:
1234@abcd
url
:
jdbc:mysql://localhost:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
# quartz oracle数据库
# quartz:
# driver-class-name: oracle.jdbc.OracleDriver
# username: data_cloud_quartz
# password: data_cloud_quartz
# url: jdbc:oracle:thin:@192.168.174.130:1521:orcl
# quartz mysql数据库
url
:
jdbc:mysql://61.164.216.254:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
quartz
:
driver-class-name
:
com.mysql.cj.jdbc.Driver
username
:
root
password
:
1234@abcd
url
:
jdbc:mysql://
localhost
:3306/data_cloud_quartz?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:mysql://
61.164.216.254
:3306/data_cloud_quartz?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
quartz
:
job-store-type
:
jdbc
jdbc
:
...
...
@@ -73,14 +66,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-system-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -18,7 +18,7 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
...
...
@@ -42,14 +42,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-config/src/main/resources/config/datax-service-workflow-dev.yml
View file @
cf3f68f9
...
...
@@ -2,7 +2,7 @@
spring
:
redis
:
database
:
1
host
:
localhost
host
:
61.164.216.254
port
:
6379
password
:
1234@abcd
# 密码(默认为空)
timeout
:
6000ms
# 连接超时时长(毫秒)
...
...
@@ -13,7 +13,7 @@ spring:
max-idle
:
10
# 连接池中的最大空闲连接
min-idle
:
5
# 连接池中的最小空闲连接
rabbitmq
:
host
:
localhost
host
:
61.164.216.254
port
:
5672
username
:
admin
password
:
1234@abcd
...
...
@@ -27,22 +27,15 @@ spring:
datasource
:
mysql
:
driver-class-name
:
com.p6spy.engine.spy.P6SpyDriver
url
:
jdbc:p6spy:mysql://
localhost
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
url
:
jdbc:p6spy:mysql://
61.164.216.254
:3306/data_cloud?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
username
:
root
password
:
1234@abcd
# flowable oracle数据库
# flowable:
# driver-class-name: oracle.jdbc.OracleDriver
# username: data_cloud_flowable
# password: data_cloud_flowable
# url: jdbc:oracle:thin:@192.168.174.130:1521:orcl
# flowable mysql数据库
flowable
:
driver-class-name
:
com.mysql.cj.jdbc.Driver
username
:
root
password
:
1234@abcd
# 如果不加这个参数,建表会失败:nullCatalogMeansCurrent=true
url
:
jdbc:mysql://
localhost
:3306/data_cloud_flowable?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
url
:
jdbc:mysql://
61.164.216.254
:3306/data_cloud_flowable?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
flowable
:
# 关闭定时任务JOB
...
...
@@ -70,14 +63,14 @@ mybatis-plus:
security
:
oauth2
:
client
:
access-token-uri
:
http://
localhost
:8612/auth/oauth/token
user-authorization-uri
:
http://
localhost
:8612/auth/oauth/authorize
access-token-uri
:
http://
61.164.216.254
:8612/auth/oauth/token
user-authorization-uri
:
http://
61.164.216.254
:8612/auth/oauth/authorize
client-id
:
datax
client-secret
:
123456
scope
:
all
resource
:
loadBalanced
:
true
token-info-uri
:
http://
localhost
:8612/auth/oauth/check_token
token-info-uri
:
http://
61.164.216.254
:8612/auth/oauth/check_token
# Swagger界面内容配置
swagger
:
...
...
datax-eureka/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -7,13 +7,15 @@ spring:
eureka
:
instance
:
hostname
:
localhost
lease-renewal-interval-in-seconds
:
20
lease-expiration-duration-in-seconds
:
60
# 设置使用IP
prefer-ip-address
:
true
# 设置外网IP号
ip-address
:
61.164.216.254
client
:
register
WithE
ureka
:
false
fetch
R
egistry
:
false
register
-with-e
ureka
:
false
fetch
-r
egistry
:
false
instance-info-replication-interval-seconds
:
30
service-url
:
defaultZone
:
http://${eureka.instance.hostname}:${server.port}/eureka/
\ No newline at end of file
defaultZone
:
http://${eureka.instance.ip-address}:${server.port}/eureka/
datax-gateway/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,14 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
# 设置使用IP
prefer-ip-address
:
true
# 设置外网IP号
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/codegen-service-parent/codegen-service/src/main/java/cn/datax/service/codegen/utils/Generate.java
View file @
cf3f68f9
...
...
@@ -21,7 +21,7 @@ public class Generate {
//// Thread.sleep(new Random().nextInt(1000 - 500 + 1) + 500);
//// System.out.println(generator.nextId(null));
//// }
// generateByTables("F://code", "
workflow", "cn.datax.service", "flow_", new String[]{"flow_category
"});
// generateByTables("F://code", "
visual", "cn.datax.service.data", "visual_", new String[]{"visual_board_chart
"});
// }
/**
...
...
@@ -31,7 +31,7 @@ public class Generate {
* @param parentName 包名
* @param tableNames 表名
*/
private
static
void
generateByTables
(
String
projectPath
,
String
moduleName
,
String
parentName
,
String
tablePrefix
,
String
[]
tableNames
)
{
private
static
void
generateByTables
(
String
projectPath
,
String
moduleName
,
String
parentName
,
String
tablePrefix
,
String
[]
tableNames
)
{
//配置数据源
DataSourceConfig
dataSourceConfig
=
getDataSourceConfig
();
//全局变量配置
...
...
datax-modules/codegen-service-parent/codegen-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/data-market-service-parent/data-market-service-integration/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
datax-modules/data-market-service-parent/data-market-service-mapping/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/data-market-service-parent/data-market-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/data-masterdata-service-parent/data-masterdata-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
datax-modules/data-metadata-service-parent/data-metadata-service-console/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/data-metadata-service-parent/data-metadata-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/data-quality-service-parent/data-quality-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
datax-modules/data-standard-service-parent/data-standard-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
\ No newline at end of file
datax-modules/data-visual-service-parent/data-visual-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://
localhost
:8610/eureka
defaultZone
:
http://
61.164.216.254
:8610/eureka
datax-modules/email-service-parent/email-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -20,10 +20,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/file-service-parent/file-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -20,10 +20,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/quartz-service-parent/quartz-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/system-service-parent/system-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-modules/workflow-service-parent/workflow-service/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -19,10 +19,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-tools/datax-tool-monitor/src/main/resources/bootstrap.yml
View file @
cf3f68f9
...
...
@@ -9,10 +9,12 @@ spring:
eureka
:
instance
:
lease-renewal-interval-in-seconds
:
20
prefer-ip-address
:
true
ip-address
:
61.164.216.254
client
:
register-with-eureka
:
true
fetch-registry
:
true
instance-info-replication-interval-seconds
:
30
registry-fetch-interval-seconds
:
3
service-url
:
defaultZone
:
http://localhost:8610/eureka
\ No newline at end of file
defaultZone
:
http://61.164.216.254:8610/eureka
\ No newline at end of file
datax-ui/vue.config.js
View file @
cf3f68f9
...
...
@@ -32,6 +32,7 @@ module.exports = {
devServer
:
{
port
:
port
,
open
:
false
,
disableHostCheck
:
true
,
overlay
:
{
warnings
:
false
,
errors
:
true
...
...
@@ -39,7 +40,7 @@ module.exports = {
proxy
:
{
// change xxx-api/login => /login
[
process
.
env
.
VUE_APP_BASE_API
]:
{
target
:
`http://
localhost
:8612/`
,
target
:
`http://
61.164.216.254
:8612/`
,
changeOrigin
:
true
,
pathRewrite
:
{
[
'^'
+
process
.
env
.
VUE_APP_BASE_API
]:
''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment