Skip to content

Commit ef82ab6

Browse files
committed
增加数据下载审计和工作流节点打通exchangis功能
1 parent 37bb082 commit ef82ab6

File tree

3 files changed

+88
-297
lines changed
  • dss-framework

3 files changed

+88
-297
lines changed

dss-framework/dss-framework-admin/pom.xml

Lines changed: 0 additions & 295 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
package com.webank.wedatasphere.dss.framework.admin.pojo.entity;
2+
3+
import java.util.List;
4+
5+
/**
6+
* @Auther: Han Tang
7+
* @Date: 2022/1/18-01-18-18:06
8+
*/
9+
public class DssExchangeTaskRes {
10+
11+
private int page;
12+
private int totalItems;
13+
private int totalPages;
14+
private int pageSize;
15+
private List<DssExchangeTask> dssExchangeTaskList;
16+
public int getPageSize() {
17+
return pageSize;
18+
}
19+
20+
public void setPageSize(int pageSize) {
21+
this.pageSize = pageSize;
22+
}
23+
24+
public int getPage() {
25+
return page;
26+
}
27+
28+
public void setPage(int page) {
29+
this.page = page;
30+
}
31+
32+
public int getTotalItems() {
33+
return totalItems;
34+
}
35+
36+
public void setTotalItems(int totalItems) {
37+
this.totalItems = totalItems;
38+
}
39+
40+
public int getTotalPages() {
41+
return totalPages;
42+
}
43+
44+
public void setTotalPages(int totalPages) {
45+
this.totalPages = totalPages;
46+
}
47+
48+
public List<DssExchangeTask> getDssExchangeTaskList() {
49+
return dssExchangeTaskList;
50+
}
51+
52+
public void setDssExchangeTaskList(List<DssExchangeTask> dssExchangeTaskList) {
53+
this.dssExchangeTaskList = dssExchangeTaskList;
54+
}
55+
56+
57+
}

dss-framework/dss-framework-project-server/src/main/resources/dss.properties

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,35 @@ wds.linkis.gateway.ip=127.0.0.1
2020
wds.linkis.gateway.port=9001
2121
wds.linkis.gateway.url=http://127.0.0.1:9001/
2222

23-
wds.linkis.server.mybatis.datasource.url=jdbc:mysql://hadoop02:3306/dss_linkis_1?characterEncoding=UTF-8
23+
wds.linkis.server.mybatis.datasource.url=jdbc:mysql://***REMOVED***:3306/dss_dev_1?characterEncoding=UTF-8
24+
#wds.linkis.server.mybatis.datasource.url=jdbc:mysql://hadoop02:3306/dss_test?characterEncoding=UTF-8
25+
2426
wds.linkis.server.mybatis.datasource.username=root
25-
***REMOVED***123456
27+
***REMOVED***123456
28+
29+
spring.server.port=9202
30+
spring.spring.application.name=dss-framework-project-server
31+
32+
33+
wds.linkis.reflect.scan.package=org.apache.linkis,com.webank.wedatasphere.dss
34+
spring.spring.mvc.servlet.path=/api/rest_j/v1
35+
spring.spring.servlet.multipart.max-file-size=200MB
36+
spring.spring.servlet.multipart.max-request-size=200MB
37+
38+
39+
wds.linkis.log.clear=true
40+
41+
wds.linkis.server.version=v1
42+
43+
##restful
44+
wds.linkis.server.restful.scan.packages=com.webank.wedatasphere.dss.framework.workspace.restful,com.webank.wedatasphere.dss.framework.project.restful,com.webank.wedatasphere.dss.framework.release.restful,com.webank.wedatasphere.dss.framework.dbapi.restful,com.webank.wedatasphere.dss.framework.admin.restful
45+
46+
##mybatis
47+
wds.linkis.server.mybatis.mapperLocations=classpath*:com/webank/wedatasphere/dss/framework/workspace/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/application/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/project/dao/impl/*Mapper.xml,classpath*:com/webank/wedatasphere/dss/framework/appconn/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/release/dao/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/admin/xml/impl/*.xml,classpath*:com/webank/wedatasphere/dss/framework/dbapi/dao/impl/*.xml
48+
49+
wds.linkis.server.mybatis.typeAliasesPackage=com.webank.wedatasphere.dss.application.entity,com.webank.wedatasphere.dss.common.entity,com.webank.wedatasphere.dss.framework.workspace.bean,com.webank.wedatasphere.dss.framework.project.entity,com.webank.wedatasphere.dss.framework.appconn.entity,com.webank.wedatasphere.dss.framework.release.entity,com.webank.wedatasphere.dss.framework.admin.pojo.entity,com.webank.wedatasphere.dss.framework.dbapi.entity
50+
51+
wds.linkis.server.mybatis.BasePackage=com.webank.wedatasphere.dss.framework.workspace.dao,com.webank.wedatasphere.dss.application.dao,com.webank.wedatasphere.dss.framework.project.dao,com.webank.wedatasphere.dss.framework.appconn.dao,com.webank.wedatasphere.dss.framework.release.dao,com.webank.wedatasphere.dss.framework.admin.xml,com.webank.wedatasphere.dss.framework.dbapi.dao
52+
53+
wds.linkis.server.user.restful.uri.pass.auth=/api/rest_j/v1/dss/framework/audit/script/download/save,/api/rest_j/v1/dss/framework/audit/script/download/query,/api/rest_j/v1/dss/framework/exchangis/project/tree,/api/rest_j/v1/dss/framework/exchangis/task/tree,/api/rest_j/v1/dss/framework/exchangis/shell
54+

0 commit comments

Comments
 (0)