/* * Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved. * * https://www.mall4j.com/ * * 未经允许,不可做商业用途! * * 版权所有,侵权必究! */ package com.yami.trading.common.serializer.springfox; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Primary; import springfox.documentation.spring.web.json.JacksonModuleRegistrar; import springfox.documentation.spring.web.json.JsonSerializer; import java.util.List; /** * @author LGH */ @Configuration public class SpringFoxJsonSerializerConfig { @Bean @Primary public JsonSerializer yamiSpringfoxJsonSerializer(List moduleRegistrars) { return new SpringfoxJsonSerializer(moduleRegistrars); } }