I am getting HibernateSystemException although I did everything that is mentioned on different forums.
Here is a part of applicationContext.xml
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
I also placed @Transactional annotaion above my class.
@Transactional
public class MyClassImpl
