It should be possible to create e.g.
public interface Entity1Repository extends JpaRepository<Entity1, Long>, JpaSpecificationExecutor<Entity1> {
}
and then start to use it. Currently there seems to be no code that listens to creation of these auto-injected types. It is a Spring specific type so it should probably be in the Spring plugin. Not sure what it needs to trigger though