Spring Boot 1.4.0.RELEASE 中是否存在@NodeEntityScan?

Does @NodeEntityScan exist in Spring Boot 1.4.0.RELEASE?

根据 http://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/reference/htmlsingle/#boot-features-neo4j 有一个 @NodeEntityScan 注释:

You can customize entity scanning locations using the @NodeEntityScan annotation.

根据 http://docs.spring.io/spring-boot/docs/1.4.0.M3/api/org/springframework/boot/neo4j/NodeEntityScan.html 它存在于版本 spring-boot 1.4.0.M3

但是 http://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/api/org/springframework/boot/neo4j/NodeEntityScan.html 表明它在 1.4 中不存在。0.RELEASE 我找不到任何提及它的地方。

spring boot 1.4.0.RELEASE 中是否存在此注解?这是文档没有更新的情况吗?应该改用什么?

Spring Boot 1.4 具有通用注释 org.springframework.boot.autoconfigure.domain.EntityScan (JavaDoc),它注册包以扫描 JPA、Neo4J、MongoDB、Cassandra 和沙发底座。