Commit 72328eda by Jony.L

swagger biz模块文档生成分类

parent edcce9cb
/**
* 属于 product 模块的 framework 封装
*
* @author 芋道源码
*/
package com.luhu.computility.module.product.framework;
package com.luhu.computility.module.biz.framework.web.config;
import com.luhu.computility.framework.swagger.config.ComputilitySwaggerAutoConfiguration;
import org.springdoc.core.GroupedOpenApi;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* product 模块的 web 组件的 Configuration
*
* @author 芋道源码
*/
@Configuration(proxyBeanMethods = false)
public class BizWebConfiguration {
/**
* product 模块的 API 分组
*/
@Bean
public GroupedOpenApi bizGroupedOpenApi() {
return ComputilitySwaggerAutoConfiguration.buildGroupedOpenApi("biz");
}
}
/**
* product 模块的 web 配置
*/
package com.luhu.computility.module.product.framework.web;
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 sign in to comment