2013-02-05 86 views
1

如何在持久性配置文件中配置默認​​表前綴。我使用Spring的默認配置如下:持久性中的默認表前綴

<persistence-unit name="primary"> 
    <jta-data-source>java:jboss/datasources/MysqlDS</jta-data-source> 
    <properties> 
    <property name="jboss.entity.manager.factory.jndi.name" value="java:jboss/spring-quickstart/persistence" /> 
    <!-- Properties for Hibernate --> 
    <property name="hibernate.hbm2ddl.auto" value="create" /> 
    <property name="hibernate.show_sql" value="false" /> 
    </properties> 

感謝

+0

Is this [this](http://static.springsource.org/spring-batch/reference/html-single/index.html#repositoryTablePrefix)也許你的意思是?感謝Coray, –

回答

0

貌似this SO問題有你尋找答案。

看起來像G.巴赫提到的只允許你改變「元數據表」?

+0

,它解決了。 –