我有两个不同的java Web应用程序,而不是访问共享的postgres数据库进行读写。 我在apache tomcat上部署的第一个Web应用程序和第二个Web应用程序部署在jboss上。 当我的两个应用程序之一在数据库表上写一个新行时,序列的增量为1,其值被分配给主键,行被正确存储。 当另一个应用程序尝试在同一个表上写一个新行时,所分配的id与序列不同步,并且我对重复的主键有异常。 在我的java类中,我使用这个注释来定义我的id:
@Id
@SequenceGenerator(name = "my_seq", sequenceName = "my_seq_on_db", allocationSize=1)
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "my_seq")
Long my_id;
这是我的persistence.xml:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1"
xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="MyPersistenceUnit" transaction-type="JTA">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<jta-data-source>java:jboss/datasources/myDatasouce</jta-data-source>
<class>myPackage.myClass</class>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
<property name="hibernate.hbm2ddl.auto" value="update" />
</properties>
</persistence-unit>
</persistence>