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

cn.cheny.toolbox.spring.StaticPropertySpringUtils Maven / Gradle / Ivy

There is a newer version: 2.3.6-jdk8
Show newest version
package cn.cheny.toolbox.spring;

import cn.cheny.toolbox.other.filter.Filter;
import cn.cheny.toolbox.spring.properties.ToolboxDefaultProperties;

/**
 * 静态属性环境变量设置
 *
 * @author by chenyi
 * @date 2021/4/21
 */
public class StaticPropertySpringUtils implements SpringUtilsAware {

    @Override
    public void after(ToolboxDefaultProperties toolboxDefaultProperties) {
        Boolean underline = toolboxDefaultProperties.getFilterUnderline();
        if (underline != null) {
            Filter.setDefaultUseUnderline(underline);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy