I wanted to have some a DAO (MyDAO) extending a base DAO interface (BaseDAO). When using Spring Data JPA (1.0.0M2 or the last nightly build) to implement the DAO, I get the following error:
I can workaround this by overriding the method in MyDAO but this is not really nice as it'll require to redefine the methods from BaseDAO in all actual DAOs.Code:You have custom methods in interface test.MyDAO but not provided a custom implementation!
Is there anyway to force SDJ not to consider my base methods as regular methods, not custom ones?


Reply With Quote
