Commit cd23bb41 by qiuchaofei

1,优化查询单个元模型数据的方法。

parent d71b787e
...@@ -50,7 +50,7 @@ public class MetaDataController { ...@@ -50,7 +50,7 @@ public class MetaDataController {
private IBaseRelationshipService baseRelationshipService; private IBaseRelationshipService baseRelationshipService;
/** /**
* 查询元数据 * 获取所有的节点
*/ */
@RequestMapping(path = "/list", method = RequestMethod.GET) @RequestMapping(path = "/list", method = RequestMethod.GET)
public List<MetaData> getUserNodeList() { public List<MetaData> getUserNodeList() {
...@@ -252,7 +252,7 @@ public class MetaDataController { ...@@ -252,7 +252,7 @@ public class MetaDataController {
@ApiOperation(tags = "", value = "开始获取直接下层节点") @ApiOperation(tags = "", value = "开始获取直接下层节点")
@RequestMapping(path = "/getNextDrill", method = RequestMethod.GET) @RequestMapping(path = "/getNextDrill", method = RequestMethod.GET)
public ReturnReslult getNextDrill(String dataId) { public ReturnReslult getNextDrill(String dataId,String layer) {
logger.info("开始获取直接下层节点"); logger.info("开始获取直接下层节点");
List<MetaData> metaDataList = new ArrayList<>(); List<MetaData> metaDataList = new ArrayList<>();
......
...@@ -33,7 +33,8 @@ eureka: ...@@ -33,7 +33,8 @@ eureka:
registryFetchIntervalSeconds: 5 registryFetchIntervalSeconds: 5
serviceUrl: serviceUrl:
defaultZone: http://192.168.0.111:8081/eureka/ defaultZone: http://192.168.0.111:8081/eureka/
instance:
prefer-ip-address: true
security: security:
permit: false permit: false
authUser: root authUser: root
......
...@@ -35,7 +35,8 @@ eureka: ...@@ -35,7 +35,8 @@ eureka:
registryFetchIntervalSeconds: 5 registryFetchIntervalSeconds: 5
serviceUrl: serviceUrl:
defaultZone: http://192.168.0.111:8081/eureka/ defaultZone: http://192.168.0.111:8081/eureka/
instance:
prefer-ip-address: true
security: security:
permit: false permit: false
authUser: root authUser: root
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment