Browse Source

1.swagger不见了
2.feign调用返回xml,报错...

chenyongxing 6 năm trước cách đây
mục cha
commit
c63d4602f1

+ 2 - 7
src/main/java/com/yihu/hos/HosAdminApplication.java

@ -1,6 +1,5 @@
package com.yihu.hos;
import com.yihu.hos.interceptor.WebMvcInterceptor;
import com.yihu.hos.web.framework.util.springutil.SpringBeanUtil;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
@ -15,16 +14,13 @@ import org.springframework.cloud.netflix.feign.EnableFeignClients;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.web.config.EnableSpringDataWebSupport;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
@Configuration
@EnableWebMvc
@EnableAsync
//@EnableCaching
@EnableDiscoveryClient
@EnableFeignClients
@EnableEurekaClient
@ -38,7 +34,6 @@ public class HosAdminApplication extends SpringBootServletInitializer {
    public static void main(String[] args) throws Exception {
        SpringApplication application = new SpringApplication(HosAdminApplication.class);
        ApplicationContext run = application.run(args);
//        SpringBeanUtil.setContext(run);
    }
    @Override

+ 10 - 1
src/main/java/com/yihu/hos/config/WebMvcConfig.java

@ -3,9 +3,9 @@ package com.yihu.hos.config;
import com.yihu.hos.interceptor.WebMvcInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
/**
@ -27,4 +27,13 @@ public class WebMvcConfig extends WebMvcConfigurerAdapter {
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(webMvcInterceptor());
    }
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html")
                .addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**")
                .addResourceLocations("classpath:/META-INF/resources/webjars/");
    }
}

+ 11 - 9
src/main/java/com/yihu/hos/standard/controller/AdapterCenterEndPoint.java

@ -6,11 +6,13 @@ import com.yihu.hos.standard.model.adapter.*;
import com.yihu.hos.standard.service.adapter.*;
import com.yihu.hos.web.framework.model.standard.AdapterVersion;
import com.yihu.hos.web.framework.util.controller.BaseController;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import net.sf.json.JSONArray;
import net.sf.json.JsonConfig;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@ -27,6 +29,7 @@ import java.util.List;
@RestController("AdapterCenterEndPoint")
@RequestMapping(value = MicroServices.ApiVersion.Version1_0+"/adapterCenter")
@Api(protocols = "https", description = "适配数据管理", tags = {"适配数据管理"})
public class AdapterCenterEndPoint extends BaseController {
    @Autowired
    private AdapterSchemeService adapterSchemeService;
@ -41,7 +44,7 @@ public class AdapterCenterEndPoint extends BaseController {
    @Autowired
    private AdapterDictEntryService adapterDictEntryService;
    @RequestMapping("/schema/list")
    @RequestMapping(value="/schema/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取版本号列表",  produces = "application/json", notes = "获取版本号列表")
    public String getSchema(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                              @RequestParam(value = "filters", required = false) String filters) throws ParseException {
@ -51,7 +54,7 @@ public class AdapterCenterEndPoint extends BaseController {
    }
    @RequestMapping("/version/list")
    @RequestMapping(value="/version/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取版本号列表",  produces = "application/json", notes = "获取版本号列表")
    public String getVersions(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                              @RequestParam(value = "filters", required = false) String filters) throws ParseException {
@ -62,7 +65,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return json.toString();
    }
    @RequestMapping("/dataset/list")
    @RequestMapping(value="/dataset/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取适配数据集列表",  produces = "application/json", notes = "获取适配数据集列表")
    public String getDatasetList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                             @RequestParam(value = "filters", required = false) String filters,
@ -73,7 +76,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return json.toString();
    }
    @RequestMapping("/metadata/list")
    @RequestMapping(value = "/metadata/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取适配数据元列表",  produces = "application/json", notes = "获取适配数据元列表")
    public String getMetadataList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                          @RequestParam(value = "filters", required = false) String filters,
@ -84,7 +87,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return json.toString();
    }
    @RequestMapping("/dict/list")
    @RequestMapping(value = "/dict/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取标准字典列表",  produces = "application/json", notes = "获取标准字典列表")
    public String getDictList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                                  @RequestParam(value = "filters", required = false) String filters,
@ -95,7 +98,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return json.toString();
    }
    @RequestMapping("/dictItem/list")
    @RequestMapping(value = "/dictItem/list",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "获取标准字典项列表",  produces = "application/json", notes = "获取标准字典项列表")
    public String getDictItemList(@ApiParam(name = "filters", value = "过滤器,为空检索所有条件", defaultValue = "")
                                  @RequestParam(value = "filters", required = false) String filters,
@ -106,8 +109,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return json.toString();
    }
    @RequestMapping("/dataset/pageList")
    @RequestMapping(value="/dataset/pageList",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "分页获取适配数据集列表",  produces = "application/json", notes = "分页获取适配数据集列表")
    public Collection<AdapterDatasetModel> datasetPageList(
            @ApiParam(name = "version", value = "版本", defaultValue = "")
@ -131,7 +133,7 @@ public class AdapterCenterEndPoint extends BaseController {
        return convertToModels(ls, new ArrayList<>(ls.size()), AdapterDatasetModel.class, fields);
    }
    @RequestMapping("/metadata/pageList")
    @RequestMapping(value="/metadata/pageList",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    @ApiOperation(value = "分页获取适配数据元列表",  produces = "application/json", notes = "分页获取适配数据元列表")
    public Collection<AdapterMetadataModel> metadataPageList(
            @ApiParam(name = "version", value = "版本", defaultValue = "")