亲测有效最新解决Error creating bean with name ‘entityManagerFactory‘ defined in class path resource[...]的问题

最新解决Error creating bean with name ‘entityManagerFactory’ defined in class path resource[…]的问题

在使用spring data jpa时,
实体类如下:

package com.dg.jpa.demojpa.model;

import org.hibernate.annotations.Proxy;

import javax.persistence.*;


/**
 * @author snowball
 * @create 2020-10-12 11:22
 */
@Entity
@Table(name="ay_user")
public class AyUser {

    @Id
    @GeneratedValue(strategy= GenerationType.IDENTITY)
    private String id;

    private String name;
    private String password;



    public String getId() {
        return id;
    }

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

    public String getName() {
        return name;
    }

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

    public String getPassword() {
        return password;
    }

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


然后运行Application就报错了:

Error creating bean with name ‘entityManagerFactory’ defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister

然后我就去网上找了各种办法,一开始有说加@id注解的,加上去还是报错
最后在一篇文章的评论区找到了方法:https://blog.csdn.net/weixin_40936211/article/details/91868492

下面是解决方法

就是在下面这块代码上面

@Entity
@Table(name="ay_user")
public class AyUser {

加一个这个

@Proxy(lazy = false)

变成

@Proxy(lazy = false)
@Entity
@Table(name="ay_user")
public class AyUser {

然后运行成功:
在这里插入图片描述

  • 7
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 25
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 25
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

snowball6

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值