2010-11-15 114 views
1

不好意思。我是春天的初學者。現在,它有一些問題。
我在閱讀春天在行動並嘗試在MyEclipse中的代碼。但是當我嘗試代碼替換方法時,出現錯誤。
春季3替換法問題

<bean id="harry" class="com.springinaction.sprintidol.Magician"> 
    <property name="magicBox" ref="magicBox" /> 
    <property name="magicWords" value="Bippity boppity boo" /> 
</bean> 

<bean id="magicBox" class="com.springinaction.sprintidol.MagicBoxImpl"> 
    <replaced-method name="getContents" replacer="tigerReplacer" /> 
</bean> 

<bean id="tigerReplacer" class="com.springinaction.sprintidol.TigerReplacer" /> 


這是applicationContext.xml中。和異常如下:

Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'stevie' defined in class path resource [applicationContext.xml]: Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: net/sf/cglib/proxy/CallbackFilter

都來自這本書的代碼。爲什麼我會得到異常?以及如何解決?

謝謝。

回答

2

我找到了原因。因爲我沒有包括Spring 3.0 Persistence Core Libraries。謝謝你們。