संक्षिप्त उत्तर नहीं है, कोई आसान नहीं है ऐसा करने का तरीका। हालांकि, मुझे एक समाधान मिला है जो काम करता है। मूल रूप से आपको एक कस्टम बोली लागू करने की आवश्यकता है। यहां एक कार्यान्वयन है (कृपया टिप्पणियों के भीतर कार्यान्वयन के मूल स्रोत पर ध्यान दें)।
package com.my.custom;
import java.util.Properties;
import org.hibernate.dialect.Dialect;
import org.hibernate.dialect.PostgreSQLDialect;
import org.hibernate.id.PersistentIdentifierGenerator;
import org.hibernate.id.SequenceGenerator;
import org.hibernate.type.Type;
/**
* Creates a sequence per table instead of the default behavior of one sequence.
*
* From <a href='http://www.hibernate.org/296.html'>http://www.hibernate.org/296.html</a>
* @author Burt
*/
public class TableNameSequencePostgresDialect extends PostgreSQLDialect {
/**
* Get the native identifier generator class.
* @return TableNameSequenceGenerator.
*/
@Override
public Class<?> getNativeIdentifierGeneratorClass() {
return TableNameSequenceGenerator.class;
}
/**
* Creates a sequence per table instead of the default behavior of one sequence.
*/
public static class TableNameSequenceGenerator
extends SequenceGenerator {
/**
* {@inheritDoc}
* If the parameters do not contain a {@link SequenceGenerator#SEQUENCE} name, we
* assign one based on the table name.
*/
@Override
public void configure(
final Type type,
final Properties params,
final Dialect dialect) {
if (params.getProperty(SEQUENCE) == null
|| params.getProperty(SEQUENCE).length() == 0) {
String tableName = params.getProperty(PersistentIdentifierGenerator.TABLE);
if (tableName != null) {
params.setProperty(SEQUENCE, "seq_" + tableName);
}
}
super.configure(type, params, dialect);
}
}
}
उपरोक्त कार्यान्वयन को TableNameSequencePostgresDialect.java
के रूप में संग्रहित किया जाना चाहिए src/java/com/my/custom
. के अंतर्गत आपके Grails प्रोजेक्ट के भीतर।
इसके बाद, अपना DataSource.groovy
update अपडेट करें इस नई कस्टम बोली का उपयोग करने के लिए।
dialect = com.my.custom.TableNameSequencePostgresDialect
इसके बारे में काफी कुछ है। नहीं आसान लेकिन यह किया जा सकता है।