ejb « Eclipse « JPA Q&A





1. How To Configure Query Cacheing in EclipseLink    stackoverflow.com

I have a collection of states, that I want to cache for the life of the application, preferably after it is called for the first time. I'm using EclipseLink as my ...

2. EJB failure to update datamodel    stackoverflow.com

Here my EJB

@Entity
@Table(name = "modelos")
@NamedQueries({
    @NamedQuery(name = "Modelos.findAll", query = "SELECT m FROM Modelos m"),
    @NamedQuery(name = "Modelos.findById", query = "SELECT m FROM Modelos m ...

3. What is difference between JPA Project and EJB Project in Eclipse?    stackoverflow.com

Which one is used when? When I want JSF + Stateless Bean + JPA Entity application I need EJB Project and Dynamic Web Project integrates in EAR Project?

4. EJB abstract entity causing java.lang.NoClassDefFoundError?    stackoverflow.com

In my ejb project I defined an abstract entity class called DataObjectEntity.java, and have all entities extend this class. The purpose is such that common fields can be reused and logging ...

5. JPA. Eclipselink doesn't provide a password for mySQL while it should    stackoverflow.com

I'm trying to use a MySQL database with EclipseLink using Netbeans but I keep getting this EJB-exception when the application is about to get data out of the database:

Caused ...