1. ホーム
  2. spring

SpringBoot の例外です。クラスパスリソースに定義された名前 'entityManagerFactory'を持つビーンの作成エラー

2022-02-13 19:22:41

Springboot Persistence を使用する際に例外が発生しました。

Error creating bean with name 'entityManagerFactory' defined in class path resource 
Caused by: org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi. JdbcEnvironment]
Caused by: org.hibernate.boot.registry.selector.spi.StrategySelectionException: Unable to resolve name [org.hibernate.dialect. MySQL5Dialect ] as strategy 

解決策

application.propertiesのプロパティファイルで、マルチスペースの

オリジナルです。

spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect

org.hibernate.dialect.MySQL5Dialect の等号の両側にあるスペースを削除するだけです。