All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.chen.tools.config.swagger.SwaggerProperties Maven / Gradle / Ivy

Go to download

基于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 = "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy