I tried to use @NoRepositoryBean annotations in springboot. So I tried like this.
import org.apache.ibatis.annotations.*;
import java.time.LocalDateTime;
import org.springframework.data.repository;
@NoRepositoryBean
public interface YearReportRepository {
...
...
}
But I got this error.
cannot find symbol @NoRepositoryBean
Please tell me how to use @NoRepositoryBean annotation.