1.錯誤
error statuslogger log4j2 could not find a logging implementation. please add log4j-core to the classpath. using ******logger to log to the console...
log4j:warn please initialize the log4j system properly.
log4j:warn see for more info.
spring 使用了log4j 這個開源框架來輸出資訊,要解決這個問題非常簡單,建立log4j 的配置檔案即可。在src 目錄下建立配置檔案,選擇選單file > new > file,檔名輸入log4j.properties,檔案內容如下所示:【只有加入了這個檔案後才能看到spring 後台完整的出錯資訊。在開發spring 整合應用時,經常有人遇到出現404 錯誤但是卻看不到任何出錯資訊的情況,這時你就需要檢查一下這個檔案是不是存在。】
log4j.rootlogger=warn, stdout
或者通過xml檔案進行配置
<?xml version="1.0" encoding="gb2312" ?>
<
log4j:configuration
xmlns:log4j
="">
name
="org.zblog.all"
class
=>
name
="file"
value
="e:/study/log4j/all.output.log"
/>
name
= value
="false"
/>
name
="maxbackupindex"
value
="10"
/>
class
="org.apache.log4j.patternlayout"
>
name
="conversionpattern"
value
="%p (%c:%l)- %m%n"
/>
layout
>
>
name
="org.zblog.zcw"
class
=>
name
="file"
value
="e:/study/log4j/zhuwei.output.log"
/>
name
= value
="true"
/>
name
="maxfilesize"
value
="10240"
/>
name
="maxbackupindex"
value
="10"
/>
class
="org.apache.log4j.patternlayout"
>
name
="conversionpattern"
value
="%p (%c:%l)- %m%n"
/>
layout
>
>
name
="zcw.log"
>
value
="debug"
/>
ref="org.zblog.zcw"
/>
logger
>
>
ref="org.zblog.all"
/>
root
>
log4j:configuration
>
2.錯誤
解決方法:檢視tomcat–logs之後發現有錯誤:org/apache/commons/logging/logfactory
需要在專案中匯入commons-logging-1.2.jar
3.錯誤
exception occurred during processing request: null 的錯誤原因以及解決辦法
spring中遇到的問題
1.spring中的事務配置,宣告事務管理 其中 transactionnal註解 1.spring建議不要在介面口或者方法上使用該註解,因為只有使用基於介面的 時,它才會生效。2.該註解應該只能被應用到public方法,這是由 spring aop 的本質決定的。如果你在 protected pr...
Spring開發遇到的問題集
1 事務回滾是以何種方式進行,配置到那一層才會生效,事務處理的原理如何?2 aop pointcut expression的配置如何寫?3 批量操作增加2000臺伺服器,包含在乙個事務裡面處理與包含在2000個事務裡面處理,時間相差比較大。即使在2000個事務裡面沒有做資料庫操作,消耗的時間也是比較...
Spring配置問題
一.在xml檔案的配置 1.依賴注入的三種方式 屬性注入,構造方法注入,工廠注入 屬性注入 最常用的方法 通過 setter 方法注入bean 的屬性值或依賴的物件。屬性注入使用 元素,使用 name 屬性指定 bean 的屬性名稱,value 屬性或 子節點指定屬性值 構造方法注入 在元素裡宣告屬...