2 Spring的專案中配置Log4j

2021-04-15 14:57:20 字數 507 閱讀 5502

然後我們是看不到spring載入bean的配置資訊的。

在classpath路徑下加入:log4j.properties,則能夠顯示bean的載入資訊

2. 在web應用中為spring配置log4j

在web.xml中配置語句如下:

/web-inf/classes/log4j.properties

org.springframework.web.util.log4jconfiglistener

這裡配置了乙個listener,也可以配置servlet:

log4j

org.springframework.web.util.log4jconfigservlet

1 配置好了以後我們就可以在當前應用的logs目錄下找到日誌記錄檔案:mylog.log

屬性log4jconfiglocation的值建議還是設定為:/web-inf/classes/log4j.properties,這樣我們在不啟動web應用的時候,做一些測試這能夠正確地記錄日誌資訊。

spring學習2 spring建立物件的方式

pojo類 public class user2 public void setname string name override public string tostring xml 測試類 test public void test2 結果,可以發現,呼叫了無參構造方法 user2 的無參建構函...

2 spring配置bean的三種方式

1.service介面 package spring.service public inte ce service 2.實現類 package spring.service public class serviceimp implements service 3.靜態工廠 package sprin...

2 Spring中Bean標籤的常用屬性

bean標籤中的常用屬性 name student1,student2 class com.merpyzf.study01.student scope singleton id 屬性 id的屬性值名稱可以任意命名 注意 id的屬性值中不能包含一些特殊的字元或者中文 裝配bean時根據 id 值獲取物...