如何在Spring容器中加载自定义的配置文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Spring容器中加载自定义的配置文件相关的知识,希望对你有一定的参考价值。
参考技术A 自定义配置文件配置文件名为:project.properties,内容如下:
[html] view plain copy
# 是否开启逻辑删除
project_del.filter.on=false
project_domain=
修改Spring配置文件
之前代码:
[html] view plain copy
<beanidbeanid="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<propertynamepropertyname="locations">
<list>
<value>classpath:dbinfo.properties</value>
</list>
</property>
</bean>
修改后的配置文件
[html] view plain copy
<beanidbeanid="propertyConfigurer"
class="com.hisun.core.util.CustomizedPropertyPlaceholderConfigurer">
<propertynamepropertyname="locations">
<list>
<value>classpath:dbinfo.properties</value>
<value>classpath:project.properties</value>
</list>
</property>
</bean>
加入了classpath:project.properties,其为自定义的配置文件
将PropertyPlaceholderConfigurer类修改为自定义类CustomizedPropertyPlaceholderConfigurer,
PropertyPlaceholderConfigurer类的具体作用可以查资料这块儿不做详细介绍
注意下:这个configurer类获取的是所有properties的属性map,如果希望处理某个properties文件,需要在properties中
做一个命名区别,然后在加载的时候,根据key的前缀,进行获取。
定义CustomizedPropertyPlaceholderConfigurer类
类的具体内容为下,
[java] view plain copy
importjava.util.HashMap;
importjava.util.Map;
importjava.util.Properties;
importorg.springframework.beans.BeansException;
importorg.springframework.beans.factory.config.ConfigurableListableBeanFactory;
importorg.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
publicclass CustomizedPropertyPlaceholderConfigurer extendsPropertyPlaceholderConfigurer
privatestatic Map ctxPropertiesMap;
@Override
protectedvoid processProperties(ConfigurableListableBeanFactory beanFactoryToProcess,
Properties props)throws BeansException
super.processProperties(beanFactoryToProcess, props);
ctxPropertiesMap =new HashMap();
for(Object key : props.keySet())
String keyStr = key.toString();
if(keyStr.startsWith("project_"))
String value = props.getProperty(keyStr);
ctxPropertiesMap.put(keyStr, value);
publicstatic Object getContextProperty(String name)
returnctxPropertiesMap.get(name);
定义获取配置文件中值的类SpringPropertiesUtil
类的具体内容如下:
[java] view plain copy
importorg.springframework.beans.BeansException;
importorg.springframework.context.ApplicationContext;
importorg.springframework.context.ApplicationContextAware;
importorg.springframework.stereotype.Component;
/**
* Spring-PropertiesUtil工具类 -获取属性值
*
*/
@Component
publicclass SpringPropertiesUtil implementsApplicationContextAware
publicstatic final String KEY = "propertyConfigurer";
privatestatic ApplicationContext applicationContext;
publicvoid setApplicationContext(ApplicationContext applicationContext)
throwsBeansException
SpringPropertiesUtil.applicationContext = applicationContext;
publicstatic ApplicationContext getApplicationContext()
returnapplicationContext;
/**
* 获取配置文件中的内容
*
* @param keyName
* @return
*/
publicstatic String parseStr(String keyName)
CustomizedPropertyPlaceholderConfigurer cp = (CustomizedPropertyPlaceholderConfigurer) applicationContext
.getBean(KEY);
returncp.getContextProperty(keyName).toString();
/**
* 获取配置文件中的内容
*
* @param keyName
* @return
*/
publicstatic int parseInt(String keyName)
CustomizedPropertyPlaceholderConfigurer cp = (CustomizedPropertyPlaceholderConfigurer) applicationContext
.getBean(KEY);
returnInteger.parseInt(cp.getContextProperty(keyName).toString());
/**
* 获取配置文件中的内容
*
* @param keyName
* @return
*/
publicstatic double parseDouble(String keyName)
CustomizedPropertyPlaceholderConfigurer cp = (CustomizedPropertyPlaceholderConfigurer) applicationContext
.getBean(KEY);
returnDouble.parseDouble(cp.getContextProperty(keyName).toString());
这样,在项目当中就能够方便快速的获取properties文件中配置的参数
如SpringPropertiesUtil.parseStr(“content”)
你如何在 django 中加载自定义字段
【中文标题】你如何在 django 中加载自定义字段【英文标题】:How do you load a custom field in django 【发布时间】:2015-05-11 10:55:01 【问题描述】:注意:这与这个问题的答案密切相关: django admin - add custom form fields that are not part of the model
在 Django 中,可以创建自定义 ModelForms,其中包含与任何模型中的特定数据库字段无关的“rouge”字段。
在以下代码示例中,有一个名为“extra_field”的自定义字段。它出现在模型实例的管理页面中,可以在保存方法中访问,但似乎没有“加载”方法。
如何在管理页面加载之前加载带有数据的“extra_field”?
# admin.py
class YourModelForm(forms.ModelForm):
extra_field = forms.CharField()
def load(..., obj):
# This method doesn't exist.
# extra_field = obj.id * random()
def save(self, commit=True):
extra_field = self.cleaned_data.get('extra_field', None)
return super(YourModelForm, self).save(commit=commit)
class Meta:
model = YourModel
class YourModelAdmin(admin.ModelAdmin):
form = YourModelForm
fieldsets = (
(None,
'fields': ('name', 'description', 'extra_field',),
),
)
@vishnu 的源代码
【问题讨论】:
【参考方案1】:覆盖表单的__init__
方法并设置字段的initial
属性:
class YourModelForm(forms.ModelForm):
extra_field = forms.CharField()
def __init__(self, *args, **kwargs):
super(YourModelForm, self).__init__(*args, **kwargs)
initial = '%s*rnd' % self.instance.pk if self.instance.pk else 'new'
self.fields['extra_field'].initial = initial
【讨论】:
以上是关于如何在Spring容器中加载自定义的配置文件的主要内容,如果未能解决你的问题,请参考以下文章