0
votes
1answer
123 views

Unable to acquire a connection from driver [null], user [null] and URL [null] postgres

Good Morning I use Eclipse link and JPA, I want to test a small native query and i have an error. Would you please help me, I searched in this site and in others and I didn't found a solution. thank ...
1
vote
0answers
58 views

Changing default field types when generating entities from tables

Using Eclipse Dali tools to "generate entities from tables" but I want to change the default table column / entity field mappings. For example when column type is int the tools generate the ...
2
votes
1answer
153 views

JPA generate tables from entities not doing anything

I am using Eclipse Indigo with Hibernate's JPA-2 implementation. The problem is that when I use that tool to "Generate Tables from Entities" there is no effect at all. I get 45 errors saying my tables ...
0
votes
1answer
108 views

Unable to generate metamodel definitions using DataNucleus JPACriteriaProcessor from Eclipse

I'm trying to generate the metamodel definitions in Eclipse as documented on: http://www.datanucleus.org/products/accessplatform/jpa/jpql_criteria.html My project compiler level is set to 1.6 and the ...
0
votes
2answers
2k views

How to use persistence.xml and hibernate.cfg.xml in JUnit tests via eclipse?

I have been searching for an answer during quite a long time before coming here and ask this question. My problem is very simple : I cannot run any JUnit test when using the JPA Entity Manager API. It ...
2
votes
3answers
882 views

@Entity not recognizing the @Id in a @MappedSuperclass

I'm attempting to create a base class for a set of entities to reduce coding effort and duplication. My thought is that the base class has the common meta-data fields, and the child classes deal with ...
0
votes
1answer
303 views

java.lang.OutOfMemoryError: PermGen space with Resin and EclipseLink

Ever since I added EclipseLink to my setup I keep getting memory errors every few minutes. It really sucks because Eclipse (IDE) can't even stop resin once that happens and I have to go to the command ...
0
votes
2answers
221 views

DAO classes can not see persistence.xml

I am using eclipse + eclipselink + maven2 + mysql + jpa 2.0 + java SE. I can create MySQL tables from the Entity classes with Eclipse. The persistence.xml is in src/main/resources/META-INF/... I ...
1
vote
2answers
1k views

JPA: MySQL says table don't exist, but it exist actually

I have the follow script to create the table autolife.log: CREATE TABLE `log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `idpoint` int(11) NOT NULL, `value` varchar(10) NOT NULL, `time` ...
2
votes
1answer
301 views

Why the publishing is taking too long in Glassfish?

I have a project in Eclipse Indigo with JSF 2 and JPA. When the Glassfish runs my project and I update my code in the java classes and I saved the changes, the publishing from glassfish is taking too ...
9
votes
1answer
4k views

Multiple persistence-unit tags in one persistence.xml

I'm working now with a JPA 2.0 project (in Eclipse Indigo). In my persistence.xml file I need to specify two <persistence-unit> tags, because I have two different database to work with. Doing this, ...
0
votes
1answer
133 views

How to generate intermediate tables from JPA2 models in eclipse

I have to objects, User and Company and they have a one to many relationship. A user can have multiple companies. I want to model this in a database using three tables. User, UserCompany and Company ...
0
votes
1answer
385 views

How use Hibernate Tools to execute JPQL Queries?

I need to make some tests with JPQL, so I'm trying do that with Hibernate Tools, but when I try open the session factory appears this : Could not locate TransactionManager as showed below: Here is ...
0
votes
1answer
1k views

Eclipse Glassfish 3.1 adapter - SEQUENCE already exists error

I have some problems with Eclipse server adapter for Glassfish 3.1. I am using the JPA auto generated identifiers. If the server is running and I have a create-and-drop policy for JPA, than each time ...
0
votes
1answer
363 views

Sub-packaging my static meta-model classes on Eclipse Indigo

I'm currently using Eclipse Indigo and I'd like to have my meta-model classes to be automatically generated in a sub-package instead of having them in the same package of my entities. I've followed ...
1
vote
1answer
4k views

Hibernate: How configure EntityManager in Hibernate?

I create a hibernate project with 'hibernate tools'provide by JBoss to Eclipse. Generated the Entities (POJO's) and then the DAO's. This way for example: @Entity @Table(name = "area", catalog = ...
1
vote
2answers
963 views

How do injection with JPA?

Is possible do injection in EntityManager with EclipseLink 2.3 ? This is my persistence.xml file: <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" ...
0
votes
1answer
644 views

Simple local JPA2HBase App with DataNucleus

I want to build a minimalistic local app that reads/writes HBase via JPA2 without orm.xml and without maven2. Thereby I use Eclipse with the DataNucleus Plugin whose Enhancer is enabled for the ...
1
vote
2answers
2k views

How to layout Java EE projects using common JPA entities?

I have two eclipse Java EE 6 projects packaged in a WAR-file using maven 3. Now they should share JPA entities in a 3rd project among them, since they both use the same database. When doing the ...
2
votes
3answers
1k views

Why is this JPA 2.0 mapping giving me an error in Eclipse/JBoss Tools?

I have the following situation: JPA 2.0 mappings (It might probably suffice to consider only the Zip and ZipId classes as this is where the error seems to come from): @Entity @Table(name = ...
1
vote
2answers
2k views

Unable to configure EntityManagerFactory from runnable jar

I'm developing a JPA-2.0 application using Hibernate3. It runs fine from eclipse, but if run it from a generated runnable jar, it gives a javax.persistence.PersistenceException: Unable to configure ...
2
votes
2answers
815 views

Why aren't APT generated classes being compiled by Eclipse?

In my Eclipse project I'm using a third-party annotation processor, Hibernate Metamodel Generator to be exact. The annotation processor works as expected and generates .java files as specified by the ...