mvn -Dtest=MyClass#myMethod test
Appfuse - Manager & ManagerImpl
1 2 3 | public interface YourManager extends GenericManager<YourEntity, Long> { } |
1 2 3 4 5 6 7 8 9 10 | public class YourManagerImpl extends GenericManagerImpl<YourEntity, Long> implements YourManager{ YourDao yourDao; public YourManagerImpl(YourDao yourDao) { super (yourDao); this .yourDao = yourDao; } } |
<constructor-arg ref="yourDao"/> </bean>
Subscribe to:
Posts (Atom)