0
votes
1answer
21 views
EclipseLink, EntityManager with two persistence units needed
Hi,
I have one jar library A (or project in eclipse), which has it's own persistence unit (META-INF/persistence.xml) and some entity classes, and another project (B) using this on …
5
votes
1answer
102 views
Is there a Maven build for eclipselink that makes the OSGi bundles run in Felix and others?
The Eclipselink OSGi bundles seem have trouble working in some OSGi containers, notably Felix, because they fail to import packages (and that are exported by the system) that they …
0
votes
1answer
148 views
JPA Entity (in multiple persistence-unit) in OSGi (Spring DM) Environnement is confusing me.
Hi,
I'm a bit confused about a strange behavior of my JPA's related objects.
I have three bundle :
The User bundle does contain some user-related objects, but mainly the User o …
1
vote
2answers
51 views
Supporting Different JPA GenerationTypes for Test/Production
I want to use GenerationType.IDENTITY for primary keys in my production MySQL system. But for local development and testing, I'd like to use HSQLDB. The problem is that HSQLDB does …
0
votes
2answers
72 views
Example of using CURRENT_DATE in JPA query
Can anyone point me to an example on how to use CURRENT_DATE in a JPA query?
CURRENT_DATE is specified in JPA but I haven't been able to make it work. I always get the unexpected …
1
vote
1answer
89 views
programatically make all relationships CascadeType.MERGE
We have strictly defined which relationships are CascadeType.MERGE in our app. This plays into our version checking (optimistic locking). So, our CascadeType definitions sometime …
0
votes
0answers
65 views
Trouble with Aspectj load-time-weaving when using EclipseLink JPA in Spring dm Server 1.x
I am attempting to get EclipseLink JPA working inside the Spring dm Server OSGi environment.
Relevant frameworks and libraries downloaded from the Spring Enterprise Bundle Reposit …
0
votes
1answer
56 views
How can I make JDBC drivers pluggable in an OSGi environment?
I have an OSGi project that, among others, contains one bundle with JPA annotated domain models and another which uses Eclipselink as persistency provider. The latter instantiates …
0
votes
1answer
73 views
Execute “MEMBER OF” query against ‘ElementCollection’ Map fields in JP-QL (JPA 2.0)
Is it possible to run a "MEMBER OF" query against associative arrays? If so, what does the syntax look like? The obvious workaround is a native query but that gets pretty messy w …
0
votes
0answers
19 views
One persistence-unit, multiple databases with Eclipselink?
Having a single persistence-unit defined in a persistence.xml with all entity specifications, does anyone knows how to make eclipselink load different EntityManagerFactory for diff …
0
votes
2answers
59 views
What are reasons for eclipselink failing to autodetect entity classes?
I'm running eclipselink in an OSGi container and my entity classes are in their own bundle.
I have repeatedly run into the problem that Eclipselink fails to autodetect the entity …
0
votes
3answers
77 views
How to alter connection in EclipseLink
I use EclipseLink in my application. EclipseLink uses some connection pool. I use EclipseLink internal one. Connection pool creates connection when it is needed and then keeps it f …
0
votes
2answers
382 views
With Eclipselink/JPA, can I have a Foreign Composite Key that shares a field with a Primary Composite Key?
My database has two entities; Company and Person. A Company can have many People, but a Person must have only one Company. The table structure looks as follows.
COMPANY
---------- …
1
vote
1answer
108 views
JPA: How do I synchronize the persistence context with the result of the bulk update or delete?
Hi all,
There's a statement in the ejb-3_0-fr-spec-persistence.pdf which reads
The persistence context is not synchronized with the result of the bulk update or delete
So if I …
0
votes
1answer
219 views
Parameter in like clause JPQL
Hi,
I am trying to write a JPQL query with a like clause:
...LIKE '%:code%'
I would like to have code=4 and find
455
554
646
...
I cannot pass :code = '%value%'
namedQuery.se …
