Tagged Questions

TopLink is one of the leading Java persistence products and JPA implementations. TopLink is produced by Oracle and part of Oracle's OracleAS, WebLogic, and OC4J servers.

learn more… | top users | synonyms

14
votes
9answers
36k views

No Persistence provider for EntityManager named

I have my persistence.xml with the same name, using toplink, under META-INF directory. Then I have my code calling it with... EntityManagerFactory emfdb = ...
11
votes
3answers
8k views

JPA Implementations - Which one is the best to use?

I have made use of the following JPA implementations: Hibernate, Toplink, OpenJPA Each of them has their own strengths and weaknesses. I found Hibernate the most advanced of the three except that ...
10
votes
7answers
31k views

How to use enums with JPA

I have an existing database of a film rental system. Each film has a has a rating attribute. In SQL they used a constraint to limit the allowed values of this attribute. CONSTRAINT film_rating_check ...
8
votes
2answers
6k views

Do I have to close() every EntityManager?

I have just started migrating my homegrown persistence framework to JPA. Given that the persistence frameworks hide a lot of the plumbing, I'm interested in knowing if NOT closing EntityManagers will ...
5
votes
3answers
2k views

Unknown entity class error message even though the entity is marked with @Entity annotation

I am building REST web app using Netbean6.9.1 and JPA EclipseLink. The issue I'm facing is even though my entity class MasatoTable is marked with Entity annotation, I get error: ...
4
votes
1answer
542 views

ORA-00036: maximum number of recursive SQL levels (50) exceeded after configuring toplink to use bind variables

I have an application that uses Toplink for persistence and Oracle database. Recently I have had performance problems, especially on the db/query level. I have a big piece of logic in a bunch of ...
4
votes
3answers
161 views

Strange JPA behaviour: tables cleaned at app boot

Almost all is in the title... Persistence is working fine when app launched, and row are still in DB when the app is closed, but once app is loaded, rows got deleted... I'm using an already existing ...
4
votes
2answers
841 views

Is there are way to scroll results with JPA/hibernate?

I found some hint in Toplink Query query = em.createQuery("SELECT e FROM Employee e ORDER BY e.lastName ASC, e.firstName ASC"); query.setHint("eclipselink.cursor.scrollable", true); ScrollableCursor ...
4
votes
5answers
6k views

When to use Hibernate/JPA/Toplink?

Right now I'm making an extremely simple website- about 5 pages. Question is if it's overkill and worth the time to integrate some sort of database mapping solution or if it would be better to just ...
3
votes
1answer
114 views

How to determine the number for FetchBatchSize in OpenJPA?

OpenJPA provided some parameter in the FetchPlan. (http://openjpa.apache.org/builds/1.2.0/apidocs/org/apache/openjpa/persistence/FetchPlan.html) And I was stuck in one of them, the FetchBatchSize. ...
3
votes
2answers
219 views

Store and refresh object with EJB 2.0 and JPA (Toplink) problem

From my client app I want to call store and refresh in one EJB method instead of two calls to two methods. I made an EJB method, made it call the other two EJB methods and it looks simple, like this: ...
3
votes
2answers
337 views

Reasons to change JPA implementation?

I've heard that some people during their careers have changed the JPA implementation in their projects, but what are the reasons? JPA is only an interface, and I would say that it is primitive, ...
3
votes
2answers
248 views

Error While acquiring Client session in TopLink

I am facing a peculiar issue. Below is the stack trace of what error i am getting.Please help. Exception [TOPLINK-7001] (Oracle TopLink - 11g Release 1 (11.1.1.1.0) (Build 090527)): ...
3
votes
1answer
908 views

TopLink 11g versus EclipseLink

We're considering migrating to TopLink 11g JPA from Oracle Kodo JDO. But I see that EclipseLink exists and appears to be, perhaps, better thank Toplink. The wiki article on it currently states ...
3
votes
3answers
676 views

JPA inserts slow with an object graph

I'm trying to do a cascading save on a large object graph using JPA. For example (my object graph is a little bigger but close enough): @Entity @Table(name="a") public class A { private long id; ...
3
votes
4answers
570 views

EJB3 Getting at original JDBC Errors

I am using EJB3 on Glassfish using the default TopLink persistance manager. Within a Session Bean, when the persistence manager catches a DB exception, it marks the transaction to be rolled back, and ...
3
votes
1answer
3k views

JPA join table with more than one entity

I have an Entity that looks like this: public class NpcTradeGood implements Serializable, Negotiabble { private static final long serialVersionUID = 1L; @EmbeddedId protected ...
3
votes
2answers
4k views

List as a named parameter in JPA query using TopLink

In the following JPA query, the :fcIds named parameter needs to be a list of integer values: @NamedQuery(name = "SortTypeNWD.findByFcIds", query = "SELECT s FROM SortTypeNWD s WHERE ...
3
votes
6answers
11k views

GWT with JPA

I'm trying to build database application using GWT 1.5.3. I use JPA annotations with my objects. It seems in hosted mode GWT's RPC works fine. But when I try to compile my app using GWT-compiler I ...
2
votes
6answers
169 views

Toplink bug. Empty result for valid sql with not empty result

How is it possible? We are executing EJBQL on Toplink(DB is Oracle) and query.getResultList is empty. But! When i switched log level to FINE and received Sql query, that TopLink generates, i tried ...
2
votes
1answer
148 views

Controlling DDL generation in Toplink Essentials

I am having some trouble with the DDL generation of Toplink Essentials. I am developing a Glassfish 2.1 based application and use JPA for persistence. I have an object graph where a parent entity of ...
2
votes
2answers
571 views

SQL query from Toplink expression

I have a oracle.toplink.expressions.Expression expression object with me which has been created using oracle.toplink.expressions.ExpressionBuilder. I want to find its equivalent SQL query(say select ...
2
votes
2answers
202 views

java web application caching data, how to stop it so that the data is not stale!

HI, I am having a problem. My (i am guessing) persistence layer is caching my results, so when i update the database from outside my application then the data is remaining stale. however, it is only ...
2
votes
4answers
111 views

Best way to develop Java with a DB

I've experience with Toplink to translate objects to database and vica versa. But this was all part of a JSP site and now I did some EJB stuff with it to. Now is my question: is it good to work with ...
2
votes
2answers
160 views

JPA/toplink heterogeneous list of entities

Colleagues, Using JPA I need resolve following issue: at database level exits 3 entities (saying SuperEntity, DetailsAEntity and DetailsBEntity). SuperEntity contains common part of fields for ...
2
votes
1answer
234 views

JPA with Multiple Servers

I am currently working on a project that uses JPA (Toplink, currently) for its persistence. Currently, we are running a single application server, but, for redundancy, we would like to add a load ...
2
votes
2answers
281 views

GlassFish 2.1.1 - TopLink (JPA1) Persistence Exception 7106 - String Encryption Mistery

I'm using NetBeans 6.8 and Glassfish Enterprise Server 2.1.1 ((v2.1 Patch06)(9.1_02 Patch12)) (build b31g-fcs). I created a servlet and used Netbeans code generation features to imlement persistence ...
2
votes
4answers
2k views

Java server cpu usage at 100% after two days continous running with about 110 users

I have a tomcat 6.0.20, apr 1.2, jdk 1.6.0_15 with mysql 5.1.38 running on a rhel box with 4 GB ram. There is one simple jsp/servlet application on it with 5 users, one struts 1.2.0.9 with 64 users ...
2
votes
2answers
616 views

What does Hibernate/Toplink offer above JPA?

As far as I know, JPA itself offers all the shiny features like ORM, JPQL, entity relations mapping and so on. But I don't really understand, why do people use Hibernate or Toplink on top of JPA. ...
2
votes
3answers
279 views

Toplink without application server

Is it possible to use Toplink Essentials without application server, just on desktop application?
2
votes
4answers
3k views

Pitfalls and practical Use-Cases: Toplink, Hibernate, Eclipse Link, Ibatis

I worked a lot with Hibernate as my JPA implementation. In most cases it works fine! But I have also seen a lot of pitfalls: Remoting with persisted Objects is difficult, because Hibernate replaces ...
2
votes
2answers
5k views

Batch insert using JPA/Toplink

I have a web application that receives messages through an HTTP interface, e.g.: http://server/application?source=123&destination=234&text=hello This request contains the ID of the sender, ...
1
vote
1answer
67 views

How do I add data source in persistence.xml so that IntelliJ IDEA sees it?

How do I add data source in persistence.xml so that IntelliJ IDEA sees it ? I have little desktop application (which works as I want it to) that has following persistence.xml <?xml version="1.0" ...
1
vote
0answers
50 views

Errors in Toplink Map and Offline database files when migrating from jDev 10.1.3.4 to jDev 11.2.1

i'm migrating an application from jDev 10.3.1.4 (Using Equivalent version of OC4J and Toplink 3.0) to the latest to jDev 11.2.1. I'm encountering a lot of problems. First of all a general question, ...
1
vote
1answer
74 views

Old data returned when using JPQL createQuery

Using JPA/Eclipse TopLink. I'm updating a table (using createNativeQuery) as shown below: Query query = em.createNativeQuery("UPDATE Products SET productName='" + p.getProductName() + ...
1
vote
2answers
65 views

JPA Equivalent of Oracle TopLink's addBatchReadAttribute

We're using JPA, and when a collection of objects returns from a query, a separate query is executed for each "child" object related through a foreign key. For example, in our Authorization entity ...
1
vote
1answer
164 views

TopLink Exception

Hi I'm working with TopLink. While starting TomCat server I'm getting the following Exception. Initializing TopLink SessionFactory from [toplink-sessions.xml] Destroying singletons in ...
1
vote
1answer
33 views

JPA1 - ID is part of superclass results into error because of missing @Id in @Entity annotated class

we are currently evaluating JPA for our persistence unit and we got a problem when the id is part of the superclass. We always get the error message that the @Id must be in the same class as the ...
1
vote
3answers
503 views

JPA Inheritance

Hi I'm new to JPA and I'm having trouble understanding how it handles inheritance.. I have a specific problem I need solved without changing the DB scheme.. but if you can't find a solution I would ...
1
vote
1answer
123 views

Toplink batch reading

IS their any way to set property like hibernate 'hibernate.batch_size' in toplink. which will increase fetching query performance.
1
vote
2answers
358 views

Calling Remote EJB in EJB 3.1

I need to call Remote stateless EJB from another Web application with in same glassfish( 3.1 final version) which return Entity Bean( JPA 2/Eclipselink).Iam getting ejb referance in web application ...
1
vote
1answer
174 views

Get the persistence-unit name

How do you get the name of a persistence-unit in Java? I have a persistence.xml with many units, so I want to control which unit is used to create my EntityManager. There's method like ...
1
vote
2answers
200 views

problem with updating application with new data from database

I have a web application that pulls data from the database then displays it. Now the problem I'm having is that every hour I want to do updates on the data in the database; this is done by a separate ...
1
vote
2answers
297 views

SQL query to find a row equalling a date in Toplink

Really hate dates in Oracle but all I want to do is just to a basic query to find whether a row or rows that are equal to a date (the format of the date is 17-JAN-11 in the Oracle table). I am using ...
1
vote
2answers
430 views

Unable to change TopLink logging level in GlassFish

In a GlassFish 2.1 environment, I am trying to increase the logging level for TopLink... to see the raw SQL being generated. In the GlassFish Admin Console, I go to: Configurations -> my-config ...
1
vote
3answers
231 views

Is it possible to column-level optimistic locking in JPA toplink?

I studied about optimistic locking in JPA, adding @Version annotation with version column in DB and how it is managed by EntityManager etc The doc says (in my own word) optimistic lock is effective ...
1
vote
1answer
208 views

String functions in JPA in toplink (OAS 10.1.3.n)

I am trying the following query: SELECT DISTINCT SUBSTRING(c.name, 1, 1) FROM Country c againest toplink that is bundled with Oracle Application Server 10.1.3.3 but I got an error saying: ...
1
vote
1answer
260 views

query.setMaxResults() causes problems on toplink

I am using JPA (toplink) and trying to restrict the number of rows returned by a JPQL query, so I've used Query.setMaxResults method, but It throws the following error: Exception [TOPLINK-6121] ...
1
vote
1answer
1k views

Show generated SQL in toplink in eclipse

I am using EclipseLink libraries in eclipse (at dev time) and deploy on TopLink, I need to show the generated sql statement. I am using the following persistence.xml: <?xml version="1.0" ...
1
vote
1answer
585 views

Any tools for testing ad hoc JPQL queries outside of an application?

I'm working on a project which uses JPA for persistence, and I'm trying to find the cleanest and most efficient means for testing JPQL queries. I am more accustomed to the Hibernate world... in which ...

1 2 3