这那里有错。求个有耐心的人给解答下。谢谢
applicationContext.xml
<bean id="gtdao" class="com.jwlc.Dao.Impl.GoodsTypeDaoImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<bean id="gtbiz" class="com.jwlc.Biz.Impl.GoodsTypeBizImpl">
<property name="gtDao" ref="gtdao"></property>
</bean>
<bean name="/zhaobiao" class="com.jwlc.Action.GoodsTypeAction">
<property name="biz" ref="gtbiz"></property>
</bean>
注:
private GoodsTypeBiz gtbiz;      //action包public void setBiz(GoodsTypeBiz gtbiz) {
this.gtbiz = gtbiz;
      }public GoodsTypeDao gtdao;      //diz包 public void setGtDao(GoodsTypeDao gtDao) {
this.gtdao = gtdao;
}