DEV Community

Gilbert Ngeno
Gilbert Ngeno

Posted on

Failed to start bean 'documentationPluginsBootstrapper' in spring data rest

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)