2011年7月27日 星期三

Avira 小紅傘 Luke FileWalker 卡住問題可行的解決方法

情況:
在 Avira AntiVir Personal 使用 [立即掃描系統] 或 [掃描程式] 功能,當出現 Luke FileWalker 視窗後,一直卡在 Hidden objects search is running ,不會有進度!!

解決方法:
執行掃描前,將系統的 Volume Shadow Copy 服務關掉,並將啟動類型設成 停用 狀態:
開啟系統的 [服務] 視窗,點選 Volume Shadow Copy ,關掉服務,啟動類型設成 [停用]。

然後再執行 小紅傘 的 [立即掃描系統] 或 [掃描程式] 功能,應該就能正常執行了!!

2011年7月5日 星期二

Spring 2 AutoWire Note

1. 明確的 setter 和 constructor 依賴注入設定會覆蓋自動綁定設定。

2. 目前 byType and byName 的自動綁定不支援的簡單屬性注入,這裡所指的簡單屬性如基本型態StringsClasses、 以及這些簡單屬性的陣列

原文:
Note that explicit dependencies in property and constructor-arg settings always override autowiring. Please also note that it is not currently possible to autowire so-called simple properties such as primitives, Strings, and Classes (and arrays of such simple properties).

2011年1月19日 星期三

COC:Convention Over Configuration

Convention Over Configuration:
簡單來說,就是用慣例(Convention)來取代複雜的設定(Configuration)。

....
待續