SpringUtil增加getProperty重载

This commit is contained in:
Looly 2023-12-05 20:46:56 +08:00
parent 3c68b2b7b1
commit 9866840b81
2 changed files with 15 additions and 7 deletions

View File

@ -9,6 +9,7 @@
* 【cache 】 JWT#sign增加重载可选是否增加默认的typ参数issue#3386@Github * 【cache 】 JWT#sign增加重载可选是否增加默认的typ参数issue#3386@Github
* 【db 】 增加识别OpenGauss的驱动类issue#I8K6C0@Gitee * 【db 】 增加识别OpenGauss的驱动类issue#I8K6C0@Gitee
* 【core 】 修复CharSequenceUtil注释和引用避免循环引用 * 【core 】 修复CharSequenceUtil注释和引用避免循环引用
* 【extra 】 SpringUtil增加getProperty重载pr#1122@Gitee
### 🐞Bug修复 ### 🐞Bug修复
* 【core 】 修复LocalDateTime#parseDate未判断空问题问题issue#I8FN7F@Gitee * 【core 】 修复LocalDateTime#parseDate未判断空问题问题issue#I8FN7F@Gitee

View File

@ -71,8 +71,8 @@ public class SpringUtil implements BeanFactoryPostProcessor, ApplicationContextA
* @since 5.7.0 * @since 5.7.0
*/ */
public static ListableBeanFactory getBeanFactory() { public static ListableBeanFactory getBeanFactory() {
final ListableBeanFactory factory = null == beanFactory ? applicationContext : beanFactory; final ListableBeanFactory factory = null == beanFactory ? applicationContext : beanFactory;
if(null == factory){ if (null == factory) {
throw new UtilException("No ConfigurableListableBeanFactory or ApplicationContext injected, maybe not in the Spring environment?"); throw new UtilException("No ConfigurableListableBeanFactory or ApplicationContext injected, maybe not in the Spring environment?");
} }
return factory; return factory;
@ -182,26 +182,33 @@ public class SpringUtil implements BeanFactoryPostProcessor, ApplicationContextA
* @since 5.3.3 * @since 5.3.3
*/ */
public static String getProperty(String key) { public static String getProperty(String key) {
return getProperty(key, null); if (null == applicationContext) {
return null;
}
return applicationContext.getEnvironment().getProperty(key);
} }
/** /**
* 获取配置文件配置项的值 * 获取配置文件配置项的值
* *
* @param key 配置项key * @param key 配置项key
* @param defaultValue 默认值 * @param defaultValue 默认值
* @return 属性值 * @return 属性值
* @since 5.8.24 * @since 5.8.24
*/ */
public static String getProperty(String key, String defaultValue) { public static String getProperty(String key, String defaultValue) {
return getProperty(key, String.class, defaultValue); if (null == applicationContext) {
return null;
}
return applicationContext.getEnvironment().getProperty(key, defaultValue);
} }
/** /**
* 获取配置文件配置项的值 * 获取配置文件配置项的值
* *
* @param key 配置项key * @param <T> 属性值类型
* @param targetType 配置项类型 * @param key 配置项key
* @param targetType 配置项类型
* @param defaultValue 默认值 * @param defaultValue 默认值
* @return 属性值 * @return 属性值
* @since 5.8.24 * @since 5.8.24