view « Key « JPA Q&A





1. Hibernate and Teradata - view without public key    stackoverflow.com

I need to connect to Teradata view that doesn't have a public key - data warehouse may work this wired way. My application already uses hibernate to connect to other (normal) ...

3. Stored procs, views and natural keys    forum.hibernate.org

Hi folks Just a general question on Hibernate usage. We are starting up a new Spring-based project at my company and there's a good chance that, due to the good things team members have heard about the product, we are going to be using Hibernate. The issue is that the one of the senior developers in the team has some rather ...

4. FK to a view    forum.hibernate.org

Hi, I have a question concerning views: Let's say I have mapped two classes A and B: class A { @Id @Column(name="ID") private Long id; @OneToOne(fetch = FetchType.LAZY) @JoinColumn(name = "ID", insertable=false, updatable=false) private B propertyB; ... } class B { @Id @Column(name="ID") private Long id; @OneToOne(fetch = FetchType.LAZY, mappedBy="propertyB") private A propertyA; ... } I dropped B, and replaced it ...