Hi all,
I have my application developed with SpringMVC and for the persistence im using JPA (Hibernate implementation). Having already all the jpa entities is possible to create the CRUD interface...
Type: Posts; User: danilodelizia; Keyword(s):
Hi all,
I have my application developed with SpringMVC and for the persistence im using JPA (Hibernate implementation). Having already all the jpa entities is possible to create the CRUD interface...
I developed a Spring JPA project in eclipse wich access to the data stored in a mysql server. Now I need to import this project in a Spring @ MVC project. So
- I configure in the build path of the...
I just found the solution.
I should have autowired the generic implementation:
@Autowired
public DaoRole dr;
Hello,
I'm trying to configure a DAO structure in my application so I created a generic Dao interface:
public interface Dao<E, K> {
public void persist(E entity);
public void remove(E...