|
So, here is a small use case. I have one interface :
public interface IJobApi<ID, T> {
Optional<Job<ID, T>> findJob(ID jobId);
}
And impl:
@Vaidated public class JobApi implementns IJobApi<UUID, EntityKey>{
public Optional<Job<UUID, String>> findJob(UUID jobId) {
.... something
}
}
It fails with : java.lang.IllegalArgumentException: HV000162, does not specify the constructor/method findJob.
It could be an issue in hibernate or in may be in spring?
|