2016-04-12 23 views
0

私はPostGISに新しく、PostGISをHibernate SpatialとSpringフレームワークで使用しています。問題は、主キーが自動的に設定されていないということで、DBにデータを挿入するとき、私は次のエラーを取得する:Hibernate SpatialとPostGIS主キーの問題

org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.hibernate.exception.ConstraintViolationException: ERROR: null value in column "id" violates not-null constraint 
Detail: Failing row contains (null,name , country). 

は、私は、MySQL上のコードをテストしているし、それが正常に動作します。しかし、Hibernate SpatialとPostGISを使用すると、前述のエラーが発生します。こちらのモデルである:ここでは

@Entity 
@Table(name="person") 
public class Person { 

    @Id 
    @Column(name="id") 
    @GeneratedValue(strategy=GenerationType.IDENTITY) 
    private int id; 
    private String name; 
    private String country; 
    ... 
} 

は、データを挿入するためのコードは次のとおりです。

postgis-jdbc: 1.5.2 
postgresql: 8.4-702.jdbc3 
hibernate-entitymanager: 4.0.0.Final 
hibernate-core: 4.0.0.Final 
hibernate-spatial: 4.0 
commons-dbcp: 1.4 
spring version: 4.0.3.RELEASE 

および構成を休止:

public void addPerson(Person p) { 
    Session session = this.sessionFactory.getCurrentSession(); 
    session.persist(p); 
} 

そして、ここでは、Mavenの中の依存関係しています

<beans:bean id="hibernate4AnnotatedSessionFactory" 
    class="org.springframework.orm.hibernate4.LocalSessionFactoryBean"> 
    <beans:property name="dataSource" ref="dataSource" /> 
    <beans:property name="annotatedClasses"> 
     <beans:list> 
      <beans:value>it.polimi.thesis.model.Person</beans:value> 
     </beans:list> 
    </beans:property> 
    <beans:property name="hibernateProperties"> 
     <beans:props> 
      <beans:prop key="hibernate.dialect">org.hibernate.spatial.dialect.postgis.PostgisDialect 
      </beans:prop> 
      <beans:prop key="hibernate.show_sql">true</beans:prop> 
      <beans:prop key="hibernate.ddl-auto">update</beans:prop> 
     </beans:props> 
    </beans:property> 
</beans:bean> 

I woul何か助けていただければ幸いです。追加情報が必要な場合はお知らせください。

答えて

0

[OK]を、いくつかの検索の後に、このソリューションは、働いていた:

<beans:prop key="hibernate.format_sql">true</beans:prop> 

@Id 
@Column(name="id", unique=true, nullable=false) 
@GeneratedValue(generator="increment") 
@GenericGenerator(name="increment", strategy = "increment") 
private int id; 

は、私はまた、次の休止状態の設定を追加しました

関連する問題