有人知道如何顯示服務器啓動時加載的屬性(通過某個監聽器或類似的東西)?如何顯示服務器啓動時加載的屬性
這是我有:
1-文件名爲project.properties與配置參數。
2 - ...這是由彈簧加載有:
<context:property-placeholder location="WEB-INF/project.properties" />
-3-酮監聽器,我想可能是閱讀聲明的屬性並記錄他們一個合適的位置。
public class StartListener implements ServletContextListener {
Logger logger = LoggerFactory.getLogger(this.getClass().getName());
public void contextInitialized(ServletContextEvent sce) {
//Here read the properties and do the logging of it
}
//...
}
任何幫助將大大升值。