SpringBoot 2.1.0 throws ClassNotFoundException when trying to integrate database access

前端 未结 4 1487
春和景丽
春和景丽 2021-01-27 00:38

I have a simple SpringBoot 2.1.0 application and try to add the database-connectivity with JPA. Everything is set up with the \"spring-boot-start

4条回答
  •  不思量自难忘°
    2021-01-27 01:35

    For me helped adding the following to the module-info.java file:

    requires net.bytebuddy;
    

    This is only applicable for applications with Java 9 or higher.

提交回复
热议问题