引用修改

This commit is contained in:
暮光:城中城
2019-02-25 12:31:54 +08:00
parent aba46ff3d5
commit 81435c790a
3 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
package com.zyplayer.doc.dubbo.controller;
import cn.hutool.http.HttpUtil;
import com.alibaba.dubbo.rpc.service.GenericService;
import com.alibaba.fastjson.JSON;
import com.zyplayer.doc.core.json.DocResponseJson;
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.CuratorFrameworkFactory;
import org.apache.curator.retry.ExponentialBackoffRetry;
import org.apache.dubbo.rpc.service.GenericService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
@@ -122,7 +122,7 @@ public class DubboController {
}
} catch (Exception e) {
// 未找到对应类型,请手动引入项目包
logger.error("未找到对应类型,请手动引入项目包:{}", typeStr);
logger.warn("未找到对应类型,请手动引入项目包:{}", typeStr);
queryParamList.add(paramStr);
queryTypeList.add(typeStr);
}

View File

@@ -1,8 +1,8 @@
package com.zyplayer.doc.dubbo.framework.bean;
import com.alibaba.dubbo.config.ApplicationConfig;
import com.alibaba.dubbo.config.ReferenceConfig;
import com.alibaba.dubbo.rpc.service.GenericService;
import org.apache.dubbo.config.ApplicationConfig;
import org.apache.dubbo.config.ReferenceConfig;
import org.apache.dubbo.rpc.service.GenericService;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

View File

@@ -126,13 +126,13 @@
<el-table-column label="顺序" width="100">
<template slot-scope="scope">{{scope.$index + 1}}</template>
</el-table-column>
<el-table-column label="参数名" width="200">
<el-table-column label="参数名">
<template slot-scope="scope">{{scope.row.paramName}}</template>
</el-table-column>
<el-table-column label="类型" width="300">
<el-table-column label="类型">
<template slot-scope="scope">{{scope.row.paramType}}</template>
</el-table-column>
<el-table-column label="参数值" width="300">
<el-table-column label="参数值">
<template slot-scope="scope">
<el-input v-model="scope.row.paramValue"></el-input>
</template>
@@ -434,7 +434,7 @@
padding-right: 20px;
}
.el-tabs--border-card>.el-tabs__content{
height: calc(100vh - 70px);overflow-y: auto;
height: calc(100vh - 100px);overflow-y: auto;
}
.logo{
background: linear-gradient(-90deg, #03DDE4 0%, #30AFED 51%, #8755FF 100%); cursor: pointer;