com.jn.agileway.spring.propertysource.SpringPropertySources Maven / Gradle / Ivy
package com.jn.agileway.spring.propertysource;
import com.jn.langx.util.Emptys;
import org.springframework.core.env.PropertySources;
public class SpringPropertySources {
public static Object getProperty(PropertySources ps, String key) {
if (Emptys.isEmpty(key)) {
return null;
}
return ps.get(key);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy