【问题标题】:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'crudRepository'org.springframework.beans.factory.BeanCreationException:创建名为“crudRepository”的bean时出错
【发布时间】:2017-10-03 03:20:13
【问题描述】:

我使用 Spring Boot 项目,并提供了以下实体类,

@Entity
public class User {

    // form:hidden - hidden value
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    Integer id;

    // form:input - textbox
    @Column(name = "name", columnDefinition = "VARCHAR(30)", nullable = false)
    String name;

    // form:input - textbox
    @Column(name = "email", columnDefinition = "VARCHAR(50)", nullable = false)
    String email;

    // form:textarea - textarea
    @Column(name = "address", columnDefinition = "VARCHAR(255)", nullable = true)
    String address;

    // form:input - password
    @Column(name = "password", columnDefinition = "VARCHAR(20)", nullable = false)
    String password;

    // form:input - password
    String confirmPassword;

    // form:checkbox - single checkbox
    @Column(name = "newsletter", nullable = true)
    boolean newsletter;

    // form:checkboxes - multiple checkboxes
//    @Column(columnDefinition = "VARCHAR(500)", nullable = false)
    @ElementCollection
    List<String> framework;

    // form:radiobutton - radio button
    @Column(name = "sex", columnDefinition = "VARCHAR(1)", nullable = true)
    String sex;

    // form:radiobuttons - radio button
    @Column(name = "number", nullable = true)
    Integer number;

    // form:select - form:option - dropdown - single select
    @Column(name = "", columnDefinition = "VARCHAR(10)", nullable = true)
    String country;

    // form:select - multiple=true - dropdown - multiple select
//    @Column(columnDefinition = "VARCHAR(500)", nullable = true)
    @ElementCollection
    List<String> skill;

    //Check if this is for New of Update
    public boolean isNew() {
        return (this.id == null);
    }


    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }

    public String getConfirmPassword() {
        return confirmPassword;
    }

    public void setConfirmPassword(String confirmPassword) {
        this.confirmPassword = confirmPassword;
    }

    public boolean isNewsletter() {
        return newsletter;
    }

    public void setNewsletter(boolean newsletter) {
        this.newsletter = newsletter;
    }

    public List<String> getFramework() {
        return framework;
    }

    public void setFramework(List<String> framework) {
        this.framework = framework;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public Integer getNumber() {
        return number;
    }

    public void setNumber(Integer number) {
        this.number = number;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }

    public List<String> getSkill() {
        return skill;
    }

    public void setSkill(List<String> skill) {
        this.skill = skill;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof User)) return false;

        User user = (User) o;

        if (isNewsletter() != user.isNewsletter()) return false;
        if (!getId().equals(user.getId())) return false;
        if (!getName().equals(user.getName())) return false;
        if (!getEmail().equals(user.getEmail())) return false;
        if (getAddress() != null ? !getAddress().equals(user.getAddress()) : user.getAddress() != null) return false;
        if (!getPassword().equals(user.getPassword())) return false;
        if (getConfirmPassword() != null ? !getConfirmPassword().equals(user.getConfirmPassword()) : user.getConfirmPassword() != null)
            return false;
        if (!getFramework().equals(user.getFramework())) return false;
        if (getSex() != null ? !getSex().equals(user.getSex()) : user.getSex() != null) return false;
        if (getNumber() != null ? !getNumber().equals(user.getNumber()) : user.getNumber() != null) return false;
        if (getCountry() != null ? !getCountry().equals(user.getCountry()) : user.getCountry() != null) return false;
        return getSkill() != null ? getSkill().equals(user.getSkill()) : user.getSkill() == null;
    }

    @Override
    public int hashCode() {

        int result = getId().hashCode();

        result = 31 * result + getName().hashCode();
        result = 31 * result + getEmail().hashCode();
        result = 31 * result + (getAddress() != null ? getAddress().hashCode() : 0);
        result = 31 * result + getPassword().hashCode();
        result = 31 * result + (getConfirmPassword() != null ? getConfirmPassword().hashCode() : 0);
        result = 31 * result + (isNewsletter() ? 1 : 0);
        result = 31 * result + getFramework().hashCode();
        result = 31 * result + (getSex() != null ? getSex().hashCode() : 0);
        result = 31 * result + (getNumber() != null ? getNumber().hashCode() : 0);
        result = 31 * result + (getCountry() != null ? getCountry().hashCode() : 0);
        result = 31 * result + (getSkill() != null ? getSkill().hashCode() : 0);
        return result;
    }
}

我想编写一些自定义操作并尝试在这方面定义接口。下面提供了存储库接口,

public interface CrudRepository<T, ID extends Serializable>
        extends Repository<T, ID> {

    <S extends T> S save(S entity);

    T findOne(ID primaryKey);

    Iterable<T> findAll();

    Long count();

    void delete(T entity);

    boolean exists(ID primaryKey);

    // … more functionality omitted.
}

这个接口扩展了之前提供的接口,

@Repository
public interface IUserRepository extends CrudRepository<User, Long>{

}

在编译程序时,出现以下错误,

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'crudRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Not a managed type: class java.lang.Object

这里有什么问题?

Updated

Spring BootApplication 类是,

@SpringBootApplication
public class WebApplication extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(WebApplication.class);
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(WebApplication.class, args);
    }
}

【问题讨论】:

  • 请发布您的 Spring Boot 应用程序类。
  • 我已经提供了课程
  • 您需要在您的 Spring Boot 应用程序类上使用@ComponentScan 来获取所有类。
  • 应该指向base目录还是repository目录?
  • 只需将它指向您的基本目录,它应该会选择所有类。例如,@ComponentScan(basePackages = { "com.abc"})

标签: java jpa spring-boot spring-data-jpa


【解决方案1】:

将@NoRepositoryBean 添加到您的 CrudRepository。这将允许自动配置仍然发生,而无需手动设置组件扫描基础包。

接口 org.springframework.data.repository.Repository 是实际 Spring 数据存储库的标记。由于您的 CrudRepository 扩展了存储库,spring 正在尝试为 T 初始化一个名为 crudRepository 的 Spring 托管存储库(它本质上转换为对象)。由于 Object 不是由 Hibernate 管理的,因此它在启动时验证失败并崩溃。

@NoRepositoryBean 将告诉 Spring 不要为实现 Repository 的特定类生成后备存储库。

【讨论】:

    猜你喜欢
    • 2016-06-05
    • 2020-02-21
    • 2018-04-27
    • 2020-10-20
    • 2020-11-04
    • 2021-11-11
    • 2012-07-11
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多