zhouyanming commented on an issue
Hibernate ORM / Improvement HHH-8503
invoke determineDialect instead of constructDialect when hibernate.dialect is blank
I'd like to use spring EL to config dialect,when no placeholder 'hibernate.dialect' found,it will use an empty string as default value,I wish hibernate will determineDialect instead of trying load an empty class.
{code:xml}
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
${hibernate.dialect:}
</prop>
</props>
...