我有一些需要在啓動Spring MVC應用程序時加載的靜態內容塊。每當我的servlet容器啓動時需要運行的代碼塊
static{
// Added to use in the Log4J.xml file
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
System.setProperty("current.date", dateFormat.format(new Date()));
}
這種「current.date
」屬性我做的log4j.xml
用來設置當前的日期。 我不知道把它放到Spring的上下文中,以便每次用戶運行應用程序時都可以調用它。
請參閱http://stackoverflow.com/questions/2401489/execute-method-on-startup-in-spring –