Hibernate方言とデータベースを誤って混合しているようです。元の問題では、MySQLデータベースとorg.hibernate.dialect.HSQLDialect
の方言があります (以下の最初のコードブロックを参照してください。)
ソリューションには、MySQLデータベースとorg.hibernate.dialect.MySQL5Dialect
の正しい方言があります。 (以下の2番目のコードブロックを参照してください。)
databasePlatform
を変更した場合 オリジナルではMySQL方言であるため、同様に機能します。
オリジナル:
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
...
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
...
<property name="databasePlatform" value="org.hibernate.dialect.HSQLDialect"/>
</bean>
</property>
...
</bean>
作業中:
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="WebAppPU" transaction-type="RESOURCE_LOCAL">
...
<properties>
...
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
...
</properties>
</persistence-unit>
</persistence>