com.chen.tools.config.swagger.SwaggerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
基于springboot框架,将redis、swagger、rabbitmq框架的基本配置整合在一起。
封装了开发常用的工具类,比如StringUtil DateUtil 等等
抽取出项目的返回格式,请求过滤器,异常拦截
The newest version!
package com.chen.tools.config.swagger;
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* @author yeyc
*/
@Data
@Component
@ConfigurationProperties(prefix = "swagger")
public class SwaggerProperties {
private String openGroupName = "";
private String authGroupName = "";
private String controllerPath = "";
private String title = "";
private String openDescription = "";
private String authDescription = "";
private String version = "";
}