0
나는 다음의 persistence.xml 있습니다hibernate4-maven-plugin (Hibernate 4.3.6)에서 hbm2ddl.import_files가 작동하지 않는 이유는 무엇입니까?
<persistence 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" version="2.0">
<persistence-unit name="blah" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQL5Dialect"/>
<property name="hibernate.hbm2ddl.auto" value="create"/>
<property name="hibernate.hbm2ddl.import_files" value="myfile.sql"/>
</properties>
</persistence-unit>
</persistence>
을하지만 hibernate.hbm2ddl.import_files
속성이 작동하지 않습니다. myfile.sql을 넣거나 슬래시 나 와일드 카드, 클래스 패스 등 (줄을 쥐어 쥐는 것)을 앞에두면 문제가되지 않습니다. 로그 파일을 찾지도 못하고 로그 출력을 찾지 못하는 것 같습니다. 대신 기본 import.sql이 사용되고 작동합니다.
참고 : 유사한 질문 (예 : this 및 this)이 있지만 나에게 도움이되는 해결책이 없습니다.