是否可以從屬性文件中設置hibernate.hbm.xml文件中的值?從屬性文件設置hbm.xml文件中的值
<class name="com.company.table" table="TABLE" schema="$PROP_VALUE">
<id name="id" type="integer">
<column name="ID"/>
<generator class="assigned" />
</id>
<property name="description" type="string">
<column name="DESC" length="100" />
</property>
</class>