问答详情
源自:3-1 开发环境搭建

No persistence units parsed from {classpath*:META-INF/persistence.xml}

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [beans.xml]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: No persistence units parsed from {classpath*:META-INF/persistence.xml}

和老师一样的配置代码,难道是因为jdk版本原因吗,我是1.8,是不是要用1.7

提问者:qq_慕先生2446522 2018-12-19 12:27

个回答

  • 没有鱼骨头
    2018-12-20 15:36:12

    因为默认需要添加一个persistence.xml文件,在文件中定义实体类,并且这个文件是要在META-INF目录下的。但是也可以更改一些配置,更改后可以不再使用persistence.xml文件。具体更改看这个链接→ https://www.cnblogs.com/taven/p/3351841.html