You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm facing the following error and just can't figure out what's the solution for it... I made all configuration like specified but seems that my JPA context is not getting the right class for DataTablesRepository.
@Service
public class AuditoriaProdutoServiceImpl implements AuditoriaProdutoService {
@Autowired
private AuditoriaProdutoRepository auditoriaProdutoRepository;
@Override
public DataTablesOutput<AuditoriaProduto> findAll(DataTablesInput dti) {
return auditoriaProdutoRepository.findAll(dti);
}
}
But when I inspect the repository, it has underlying class of SimpleJPARepository instead of the DataTables repository... then I get the error mentioned.
Any ideas of what I'm missing?
The text was updated successfully, but these errors were encountered:
Hi, I'm facing the following error and just can't figure out what's the solution for it... I made all configuration like specified but seems that my JPA context is not getting the right class for DataTablesRepository.
Here's what I have:
My repository context xml:
My repository declaration:
My service class:
But when I inspect the repository, it has underlying class of SimpleJPARepository instead of the DataTables repository... then I get the error mentioned.
Any ideas of what I'm missing?
The text was updated successfully, but these errors were encountered: