Spring MVC Example

Spring MVC Example Git Source Tree

Root/src/main/java/info/ahlberg/spring/ContactDAOWithJPA.java

1package info.ahlberg.spring;
2
3import org.springframework.stereotype.Repository;
4
5
6@Repository
7public class ContactDAOWithJPA extends GenericDAOWithJPA<Contact, Long> implements ContactDAO {
8
9}
10

Archive Download this file

Branches