引用修改
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
package com.zyplayer.doc.dubbo.controller;
|
package com.zyplayer.doc.dubbo.controller;
|
||||||
|
|
||||||
import cn.hutool.http.HttpUtil;
|
import cn.hutool.http.HttpUtil;
|
||||||
import com.alibaba.dubbo.rpc.service.GenericService;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.zyplayer.doc.core.json.DocResponseJson;
|
import com.zyplayer.doc.core.json.DocResponseJson;
|
||||||
import com.zyplayer.doc.dubbo.controller.param.DubboRequestParam;
|
import com.zyplayer.doc.dubbo.controller.param.DubboRequestParam;
|
||||||
@@ -18,6 +17,7 @@ import org.apache.curator.RetryPolicy;
|
|||||||
import org.apache.curator.framework.CuratorFramework;
|
import org.apache.curator.framework.CuratorFramework;
|
||||||
import org.apache.curator.framework.CuratorFrameworkFactory;
|
import org.apache.curator.framework.CuratorFrameworkFactory;
|
||||||
import org.apache.curator.retry.ExponentialBackoffRetry;
|
import org.apache.curator.retry.ExponentialBackoffRetry;
|
||||||
|
import org.apache.dubbo.rpc.service.GenericService;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
@@ -122,7 +122,7 @@ public class DubboController {
|
|||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
// 未找到对应类型,请手动引入项目包
|
// 未找到对应类型,请手动引入项目包
|
||||||
logger.error("未找到对应类型,请手动引入项目包:{}", typeStr);
|
logger.warn("未找到对应类型,请手动引入项目包:{}", typeStr);
|
||||||
queryParamList.add(paramStr);
|
queryParamList.add(paramStr);
|
||||||
queryTypeList.add(typeStr);
|
queryTypeList.add(typeStr);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package com.zyplayer.doc.dubbo.framework.bean;
|
package com.zyplayer.doc.dubbo.framework.bean;
|
||||||
|
|
||||||
import com.alibaba.dubbo.config.ApplicationConfig;
|
import org.apache.dubbo.config.ApplicationConfig;
|
||||||
import com.alibaba.dubbo.config.ReferenceConfig;
|
import org.apache.dubbo.config.ReferenceConfig;
|
||||||
import com.alibaba.dubbo.rpc.service.GenericService;
|
import org.apache.dubbo.rpc.service.GenericService;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|||||||
@@ -126,13 +126,13 @@
|
|||||||
<el-table-column label="顺序" width="100">
|
<el-table-column label="顺序" width="100">
|
||||||
<template slot-scope="scope">{{scope.$index + 1}}</template>
|
<template slot-scope="scope">{{scope.$index + 1}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="参数名" width="200">
|
<el-table-column label="参数名">
|
||||||
<template slot-scope="scope">{{scope.row.paramName}}</template>
|
<template slot-scope="scope">{{scope.row.paramName}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="类型" width="300">
|
<el-table-column label="类型">
|
||||||
<template slot-scope="scope">{{scope.row.paramType}}</template>
|
<template slot-scope="scope">{{scope.row.paramType}}</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="参数值" width="300">
|
<el-table-column label="参数值">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-input v-model="scope.row.paramValue"></el-input>
|
<el-input v-model="scope.row.paramValue"></el-input>
|
||||||
</template>
|
</template>
|
||||||
@@ -434,7 +434,7 @@
|
|||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
}
|
}
|
||||||
.el-tabs--border-card>.el-tabs__content{
|
.el-tabs--border-card>.el-tabs__content{
|
||||||
height: calc(100vh - 70px);overflow-y: auto;
|
height: calc(100vh - 100px);overflow-y: auto;
|
||||||
}
|
}
|
||||||
.logo{
|
.logo{
|
||||||
background: linear-gradient(-90deg, #03DDE4 0%, #30AFED 51%, #8755FF 100%); cursor: pointer;
|
background: linear-gradient(-90deg, #03DDE4 0%, #30AFED 51%, #8755FF 100%); cursor: pointer;
|
||||||
|
|||||||
Reference in New Issue
Block a user