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