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

info.lostred.ruler.util.SpELUtils Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package info.lostred.ruler.util;

public final class SpELUtils {
    public static String dictLabel(String dictBeanName, String dictType) {
        String dictMap = beanLabel(dictBeanName);
        return dictMap + ".get('" + dictType + "')";
    }

    public static String beanLabel(String beanName) {
        return "@" + beanName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy