做hibernate持久层基类的时候,继承了HibernateDaoSupport,但是没有为HibernateDaoSupport这个父类传递sessionFactory,为什么这个持久层基类还能够通过getHibernateTemplate().save(domain)登进行一系列的增删改查操作?
你要注意你的配置文件设置的注入方式是按名称还是类型等,如果配置啦,spring会根据名字相同或者类型相同,直接使用setter方法注入进去的,如果还不确认什么时候注入进去的可以在setter方法上面设置断点,debug跟踪进去就一清二楚啦
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd" default-autowire="byName">
<import resource="base-context.xml" />
<import resource="persistence-context.xml" />
</beans>
或者在bean上面
<bean id="serviceExporter" class="org.springframework.remoting.rmi.RmiServiceExporter" autowire="byName">
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。