⑴ 如何在spring中讀取properties配置文件裡面的信息
一個系統中通常會存在如下一些以Properties形式存在的配置文件
1.資料庫配置文件demo-db.properties:
2.消息服務配置文件demo-mq.properties:
3.遠程調用的配置文件demo-remote.properties:
一、系統中需要載入多個Properties配置文件
應用場景:Properties配置文件不止一個,需要在系統啟動時同時載入多個Properties文件。
配置方式:
<!-- 將多個配置文件讀取到容器中,交給Spring管理 -->
我們也可以將配置中的List抽取出來:
<!-- 將多個配置文件位置放到列表中 -->
<!-- 將配置文件讀取到容器中,交給Spring管理 -->
二、整合多工程下的多個分散的Properties
應用場景:工程組中有多個配置文件,但是這些配置文件在多個地方使用,所以需要分別載入。
注意:其中order屬性代表其載入順序,而為是否忽略不可解析的 Placeholder,如配置了多個PropertyPlaceholderConfigurer,則需設置為true。這里一定需要按照這種方式設置這兩個參數。
三、Bean中直接注入Properties配置文件中的值
應用場景:Bean中需要直接注入Properties配置文件中的值 。例如下面的代碼中需要獲取上述demo-remote.properties中的值:
<!-- 這種載入方式可以在代碼中通過@Value註解進行注入,
可以將配置整體賦給Properties類型的類變數,也可以取出其中的一項賦值給String類型的類變數 -->
<!-- <util:properties/> 標簽只能載入一個文件,當多個屬性文件需要被載入的時候,可以使用多個該標簽 -->
<!-- <util:properties/> 標簽的實現類是PropertiesFactoryBean,
直接使用該類的bean配置,設置其locations屬性可以達到一個和上面一樣載入多個配置文件的目的 -->
Client類中使用Annotation如下:
四、Bean中存在Properties類型的類變數
應用場景:當Bean中存在Properties類型的類變數需要以注入的方式初始化
1. 配置方式:我們可以用(三)中的配置方式,只是代碼中註解修改如下
2. 配置方式:也可以使用xml中聲明Bean並且注入
<!-- 可以使用如下的方式聲明Properties類型的FactoryBean來載入配置文件,這種方式就只能當做Properties屬性注入,而不能獲其中具體的值 -->
<!-- 遠端調用客戶端類 -->
上述的各個場景在項目群中特別有用,需要靈活的使用上述各種配置方式。
http://blog.sina.com.cn/s/blog_6940cab30101evjf.html
⑵ Mac中Docker容器配置文件的位置在哪裡
得到
在Mac中,因為根本找不到該路徑.
進入docker,方法如下,之後在命令窗口就可以找到容器的配置文件了.
(有些mac中並沒有tty文件,使用方法2)
⑶ 如何在Spring容器中載入自定義的配置文件
自定義配置文件
配置文件名為:project.properties,內容如下:
[html] view plain
# 是否開啟邏輯刪除
project_del.filter.on=false
project_domain=
修改Spring配置文件
之前代碼:
[html] view plain
<beanidbeanid="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<propertynamepropertyname="locations">
<list>
<value>classpath:dbinfo.properties</value>
</list>
</property>
</bean>
修改後的配置文件
[html] view plain
<beanidbeanid="propertyConfigurer"
class="com.hisun.core.util.">
<propertynamepropertyname="locations">
<list>
<value>classpath:dbinfo.properties</value>
<value>classpath:project.properties</value>
</list>
</property>
</bean>
加入了classpath:project.properties,其為自定義的配置文件
將PropertyPlaceholderConfigurer類修改為自定義類,
PropertyPlaceholderConfigurer類的具體作用可以查資料這塊兒不做詳細介紹
注意下:這個configurer類獲取的是所有properties的屬性map,如果希望處理某個properties文件,需要在properties中
做一個命名區別,然後在載入的時候,根據key的前綴,進行獲取。
定義類
類的具體內容為下,
[java] view plain
importjava.util.HashMap;
importjava.util.Map;
importjava.util.Properties;
importorg.springframework.beans.BeansException;
importorg.springframework.beans.factory.config.;
importorg.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
publicclass {
privatestatic Map ctxPropertiesMap;
@Override
protectedvoid processProperties( 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
importorg.springframework.beans.BeansException;
importorg.springframework.context.ApplicationContext;
importorg.springframework.context.ApplicationContextAware;
importorg.springframework.stereotype.Component;
/**
* Spring-PropertiesUtil工具類 -獲取屬性值
*
*/
@Component
publicclass SpringPropertiesUtil {
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) {
cp = () applicationContext
.getBean(KEY);
returncp.getContextProperty(keyName).toString();
}
/**
* 獲取配置文件中的內容
*
* @param keyName
* @return
*/
publicstatic int parseInt(String keyName) {
cp = () applicationContext
.getBean(KEY);
returnInteger.parseInt(cp.getContextProperty(keyName).toString());
}
/**
* 獲取配置文件中的內容
*
* @param keyName
* @return
*/
publicstatic double parseDouble(String keyName) {
cp = () applicationContext
.getBean(KEY);
returnDouble.parseDouble(cp.getContextProperty(keyName).toString());
}
}
這樣,在項目當中就能夠方便快速的獲取properties文件中配置的參數
如SpringPropertiesUtil.parseStr(「content」)
⑷ netBean這個軟體進行javaee開發的時候使用容器Tomcat,請問那配置文件在哪找呢MyEclipse很容易就找到