I am using spring data rest for my application.
I am getting following error and application doesn't get started when I add this method in repository:-
Method:-
@Modifying
@Transactional
@Query("from employee as ft where ft.company.id = ?1")
void deleteAllEmployeeCompany(
@Param("companyId") @RequestParam("companyId") int companyId);
Error:-
org.springframework.context.ApplicationContextException: Failed to start bean 'documentationPluginsBootstrapper';
…
Top comments (0)