使用SpringDataJdbc无法注册的情况
当
EnableJdbcRepositories 注解无法注册Repository仓库的时候,你可以查看下 你的实体是否存在@Table注解,没有请加上,这样就能扫描到了
@Table("b_authority")
@Getter
@Setter
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class VirtualUserEntity
主入口类注解
@EnableJdbcRepositories(basePackages = {"cn.dmahz.dao.repo"},namedQueriesLocation = "classpath:jdbc-named-queries.properties")
复制请注明出处,在世界中挣扎的灰太狼