TestBiz biz = (TestBiz) ctx.getBean("testBiz"); 这句报错类型转换错误,用ITestBiz接就没问题 下面的是spring配置文件,其中NewDao是TestBiz继承自的接口ITestBiz的实现类
<bean id="testDao" class="dao.NewDao"></bean> <bean id="testBiz" class="biz.TestBiz" scope="singleton"> <!-- <property name="dao"> --> <!-- <ref bean="testDao"/> --> <!-- </property> --> <constructor-arg index="0"> <ref bean="testDao"/> </constructor-arg> <constructor-arg index="1" type="java.lang.String"> <value>123</value> </constructor-arg> </bean>
HansonQ
相关分类