私はいくつかのSpringコンテキスト構成を持っています
<bean name="propertyConfigurator" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:/com/net/model/jdbc.properties"/>
</bean>
....
<bean id="sessionFactoryToBillingDb" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
....
jdbc.propertiesは次のようになります
...
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
...
そして、Inellij Idea の HQL コンソールを使用したいのですが、エラーが発生します:
java.lang.RuntimeException: org.hibernate.boot.registry.selector.spi.StrategySelectionException: Unable to resolve name [org.hibernate.dialect.MySQLDialectt.MySQLDialect] as strategy [org.hibernate.dialect.Dialect]
org.hibernate.dialect. MySQLDialectt.MySQLDialect 何が問題なのですか?