0
votes
JPA Composite Key + Sequence
I notice that it appears your building a composite primary key like this …
1
vote
Java Persistence: Cast to something the result of Query.getResultList() ?
Well there is the java Collections class solution, but you didn't explain how your casting was failing, or if it was just giving a warning...
This is one way to validate this:
…
2
votes
Display Hibernate Query in JTable
There are a lots and lots of ways to do this, but are you looking for something that would automatically figure out the columns or what? If you used the java reflection pieces you can read the Hibe …
0
votes
Hibernate findById isn’t finding records that it previously found
Is it possible that at the time thread 10 starts its transaction that the ID is not yet a fully committed transaction? So basically I'm asking - if you have a cart 49 already in the database (say a …
1
vote
Hibernate ordering
I'm assuming your vehicles class looks like this? I'm using JPA here because thats what I know...
class Vehicles {
@Id
@Column(name="vehicles_id")
private int id;
// …
0
votes
Is my DAO strategy ok?
Couple of questions
Are you frequently creating your DOA to do a single task or are these long lived?
What about using a static function? Clearly your Book object can be bind …
1
vote
JPA/Hibernate - Embedding an Attribute
I have a similar problem in my own schema so what I've resorted to at the moment is like this:
Parent class:
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) …
0
votes
Changing the type of an entity preserving its ID
I think skaffman is right here, once the id has been set it won't persist, and further because the id is generated it expects the sequence to be in charge of assigning the id number.
You co …
0
votes
How to make Hibernate only query the default mapping?
You might consider one of the extensions to hibernate which do this table revisions for you. I've never used envers personally, but the doc …
