I would want to know if it is a good practise to use JpaDaoSupport.
We are using EclipseLink as JPA provider currently and would want to know if it is better to move towards using JpaDaoSupport class.
Could someone point the advantages and disadvantages briefly?
JpaDaoSupportis a convenient way to provideJpaTemplateinside your DAO class.However,
JpaTemplateis mostly redundant and Spring team recommends not to use it in new projects (useEntityManagerdirectly instead).See javadoc:
and Reference Documentation: