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

com.starmcc.qmframework.config.SpecialConfiguration Maven / Gradle / Ivy

Go to download

springboot based on a series of packaging framework. QmFramework to implements AOP, rewrite the requestBody, global exception catching,version checking, request body parameter symmetric encryption mechanism, controller packaging and the toolkit collection. thank you for using it.

There is a newer version: 3.0.1-RELEASE
Show newest version
package com.starmcc.qmframework.config;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.List;

/**
 * 特殊请求配置
 *
 * @Author: qm
 * @Date: 2019/8/30 14:49
 */
@ConfigurationProperties(prefix = "qmframework.special", ignoreUnknownFields = false)
public class SpecialConfiguration {

    public static String[] uri;

    public String[] getUri() {
        return SpecialConfiguration.uri;
    }

    @Value("${uri:}")
    public void setUri(String[] uri) {
        SpecialConfiguration.uri = uri;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy