不好意思。我是春天的初學者。現在,它有一些問題。
我在閱讀春天在行動並嘗試在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
都來自這本書的代碼。爲什麼我會得到異常?以及如何解決?
謝謝。