I am trying to inject hibernateTemplate using @Resource annotation in my dao class but when I run the class I am getting following exception.
Caused by: org.springframework.beans.NotWritablePropertyException: Invalid property 'sessionFactory' of bean class [com.traveltripper.reports.dao.impl.ReportDefinitionDaoImpl]: Bean property 'sessionFactory' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
here is my applicationContext-hibernate.xml file where I have configured hibernate template.
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mappingResources">
<list>
<value>com/traveltripper/reports/dto/reportDefinition.hbm.xml</value>
<value>com/traveltripper/reports/dto/reportPropertyUser.hbm.xml</value>
<value>com/traveltripper/reports/dto/reportRoomRes.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">${hibernate.showSQL}</prop>
<prop key="hibernate.format_sql">${hibernate.formatSQL}</prop>
</props>
</property>
and Here is how I used @Resource in my Dao class.
@Resource(name="hibernateTemplate")
private HibernateTemplate hibernateTemplate;