Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
2k views

How to use Hibernate SchemaUpdate class with a JPA persistence.xml?

I've a main method using SchemaUpdate to display at the console what tables to alter/create and it works fine in my Hibernate project: public static void main(String[] args) throws IOException { ...
3
votes
2answers
485 views

EclipseLink into OSGI Bundle persistence.xml not found

I'm having some problem with EclipseLink. I'm using GlassFish v3.1 and I'm trying to use EclipseLink for my persistence layer. I followed all tutorials available on the Eclipse wiki without luck. My ...
3
votes
1answer
213 views

Is it possible to share configuration from persistence.xml?

I have one persistence unit configured in my persistence.xml but i have two databases. Those databases are identical, regarding the schema. What i am trying to do is: ...
3
votes
3answers
2k views

JPA and toplink create-table on if they don't already exist?

Looks like jpa is something which makes me ask a lot of questions. Having added this <property name="toplink.ddl-generation" value="create-tables"/> my JPA application always creates tables ...
2
votes
2answers
661 views

JPA persistence.xml

Is there a way to make the data on the persistence.xml dynamic? I was thinking of adding a database name property on my properties file, then the tables are created, if not existing. Is this ...
2
votes
1answer
279 views

persistence.xml for ejb deployed in glassfish

folks, i am trying to deploy a ear with a ejb in the ear root. the ejb has a persistence.xml file where the tag has to be a jar file in the Glassfish's domain lib. (this i have put it there because ...
2
votes
1answer
517 views

persistence.xml not found on glassfish deployment descriptor (IntelliJ)

I have an EJB and a WEB module in my IntelliJ, created 5 entities that I would hope to load into a database using annotations. I go to project settings, under modules, and select that I want to add ...
2
votes
1answer
2k views

JPA 2.0, hibernate 3.5, jars & persistence.xml location

I'm building a desktop application using hibernate 3.5 & JPA 2.0. I have 2 jars, the lib, which defines every entity and DAO, packages looks like this : org.my.package.models ...
1
vote
1answer
120 views

Configure persistence units to be available in several jars of an ear

In a .ear file, my EJBs are copied in several jar and war for some technical constraints. And only one of these jar contains the persistence.xml file where I have configured several persistence units. ...
1
vote
2answers
142 views

glassfish-resource.xml and persistence unit in eclipse ang glassfish v3.0

I created a Web project in eclipse and adding a glassfish-resource.xml init and configure it with my database url. also I added a persistence.xml unit in my project and add a jta-datasource for my ...
1
vote
2answers
110 views

Understanding Persistence.xml in JPA

I am trying to understand the following things: When I make an EJB project and deploys it to Glassfish do I set up JDBC resources/connection pools at the administrator center of Glassfish or do I add ...
1
vote
2answers
92 views

Change values in persistence.xml from within the program

Is it possible to change values in persistence.xml from within the program that is using it ? If yes, i would appreciate some hints or/and links to read.
1
vote
1answer
336 views

HSQLDB EJB3.0 Hibernate Cannot Connect to DB

I am attempting to create a EJB3.0 container-managed persistence bean and am having issues with connecting to the in-memory HSQLDB used by unit tests. I am using OpenEJB for my standalone container ...
1
vote
1answer
770 views

Hibernate: javax.persistence.* driver properties cause UnsupportedOperationException: The user must supply a JDBC connection?

I'm using <property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver" /> <property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost/whatever" /> ...
1
vote
1answer
534 views

How to specify a jdbc.url in the persistence.xml relative to the application folder?

Once I deploy my application with JPA the user chooses to install it somewhere. Then however the property set as: <property name="javax.persistence.jdbc.url" value="jdbc:derby:db;create=true"/> ...
1
vote
1answer
395 views

it's possible configure a persistence.xml for multiple data sources?

hi i just want to know how configure in a persistence.xml two datasources one of the data sources have a jar outside from the other. I'm tried but i really don't if it's possible
1
vote
2answers
397 views

How to detect entities automatically with openJPA?

I'm looking for an entity detection in OpenJPA. That I don't need to declare all entities in the persistence.xml. Edit: I'm sorry, I forgot to say that I develop a java se app.
1
vote
1answer
685 views

Encrypting Parameters in persistence.xml

We have a batch application using OpenJPA. We are specifying all the DB connection parameters in persistence.xml. Although its a functional setup it looks very insecure to have all the ...
1
vote
2answers
1k views

JPA default persistence unit

I get exception "There is no default persistence unit in this deployment." can I somehow mark unit as default?(I have only one persistence unit, so Id rather not call it by name)
0
votes
1answer
38 views

Reading a Jta Datasource

I have a JSF, EclipseLink app. I use JasperReports, to export a report I need to create a connection. JasperPrint jasperPrint = JasperFillManager.fillReport(File, Hash Map, Connection) I cant ...
0
votes
1answer
34 views

toplink sequencing jumps by preallocation size

We have an application where we use table sequencing.Everytime we bounce the server the sequence number( here SEQ_R) in the table acts weird.The sequence number gets incremented by 90000 and at times ...
0
votes
0answers
36 views

XMLEncoder weird behavior

I faced weird XMLEncoder behavior. I didn't see notes about it in javadocs. Look at simple example below. public class Product { private Integer id; private String name; private double ...
0
votes
1answer
66 views

How to use spring roo to manage multiple DB?

I am working on a project using spring roo and it needs to manage multiple DB. So I set up multiple data sources and entity manager factories. And when I run the project, I always get the following ...
0
votes
1answer
156 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
0answers
88 views

OpenJPA 2.1.1 - Cannot find the declaration of element 'persistence'

I just downloaded http://www.apache.org/dyn/closer.cgi/openejb/4.0.0-beta-1/apache-tomee-1.0.0-beta-1-webprofile.zip to use OpenEJB with OpenJPA2.1.1. I can't get my persistence.xml working. The top ...
0
votes
2answers
54 views

integrating between multiple persistence units (xa and non-xa) in javaee

I have two persistence units in my persistence.xml, one XA and another non-xa (to increase performance when work is only releated to a single datasource and I dont need global transaction). ...
0
votes
1answer
148 views

EclipseLink JPA - location of persistence.xml

I am using JPA for a java class and having trouble putting the persistence XML file where it should be. The IDE i am using is Eclipse Helios. Eclipselink jar files are downloaded and added to my JRE ...
0
votes
0answers
91 views

Junit test case works only in jdbc/__default datasource

I wrote a testcase with embedded GlassFish for testing an EJB. When I tried to test it using jdbc/mydb as datasource (in persistence.xml) I got the following error Exception while preparing the ...
0
votes
0answers
84 views

Java - Entity inheritance does not compile in separated jar files [closed]

Possible Duplicate: Java - Inheritance between two separated jars I have 2 jar files, in jar 1 I have an inheritable Entity A, and in jar 2 I have another Entity B which inherits Entity A. ...
0
votes
0answers
115 views

JEE6 Standard components in my project - what about persistence.xml

I want to reuse standard components in my ear file. myproject.ear + lib/standard-comp-entities.jar + lib/myproject-entities.jar (extending standard-components entities) | standard-comp.jar (with ...
0
votes
0answers
254 views

using Spring's persistenceXmlLocation without <class> in persistence.xml

My question: Is there a way to tell Spring/JPA to automatically detect classes annotated with @Entity? Background: This is my configuration of the entityManagerFactory <bean ...
0
votes
1answer
191 views

How can I exclude one persistence.xml from the test classpath in Eclipse without using Maven/Ant?

While running JUnit integration tests inside Eclipse, I have two persistence.xml files on the classpath - one containing the configuration for the test cases and another one for production. I need to ...
0
votes
1answer
246 views

Error parsing the persistence.xml(org.hibernate.MappingException)

I am using JPA and I tried to put my configuration data in the persistence.xml file. But when I run the app, the error is as follows: [hibernatetool] org.hibernate.MappingException: invalid ...
0
votes
2answers
477 views

Persistence.xml where to put in eclipse project

Simple question... I have a few projects in Eclipse enviroment MainApp(Enterprise Application Project) which "includes" WebController (EJB Project) WebModel (JPA Project) WebView(Dynamic Web ...
0
votes
1answer
143 views

persistence.xml not getting added in ear

We have a maven project with ejbs and stuff. When i run a build and create my ear, the persistence.xml doesnt get included inside the ear. What could be wrong here?
0
votes
1answer
154 views

What is the cause of error “No META-INF/persistence.xml was found in classpath”?

Included all necesaary toplinks lib still getting following error on running example.java using netbeans 6.8 No META-INF/persistence.xml was found in classpath. Persistence.xml <?xml ...
0
votes
1answer
439 views

Two Persistence Unit in one Persistence.xml

All, We created some libraries that all our projects will use, this libraries will provide the basic functionality of all our systems (login, some manage, etc). But the application itself could use ...
0
votes
2answers
418 views

Can't figure it out how to resolve javax.persistence.PersistenceException

We are trying to build a JSF application with JPA. For now, we want to make the login feature, but when we run the application on our glassfish server, there is the exception: ...
0
votes
1answer
587 views

Hibernate / seam : hibernate.show_sql setting

<persistence-unit name="acmDB" transaction-type="RESOURCE_LOCAL"> <provider>org.hibernate.ejb.HibernatePersistence</provider> ...
0
votes
1answer
349 views

Load persistence.xml from aar in tomcat

Greetings. I have a openJPA based project that I need to deploy it in format of aar into the following folder under Tomcat. tomcat\webapps\axis2\WEB-INF\services But it seems that the service ...
0
votes
1answer
410 views

Java Netbeans: Editing the MySQL DB connection infos

I just created a new project with NetBeans using the database template to connect to a MySQL database. After searching a while I got a question and hope anyone can help me with that: I want to create ...
0
votes
0answers
666 views

Can't find a persistence unit Error?

Ii am using eclipse IDE. i am getting Can't find a persistence unit named 'manager1' Error JBOSS AS 6 is the server persistence.xml contains <persistence ...
0
votes
1answer
2k views

Deployed war to tomcat can't throws java.lang.NoClassDefFoundError: javax/persistence/PersistenceException

I'm new to this forum and also new to JPA / EJB. I'm trying to deploy a .war file containing a small application to a tomcat server. The application is using JTA to communicate with the Derby db. ...
0
votes
1answer
146 views

How can I manage to use 2 persistense units and make my app to recognize which to use?

I hava a JavaEE/ EJB3 application in which I'll need to connect diferent databases. It's on JBOSS 5.10GA. After I tried to deploy it I got the following error: 09:04:57,921 ERROR ...
0
votes
2answers
448 views

Problems with generating sql via eclipseLink - missing separator

i'am using eclipseLink with jpa. in my persistence.xml, i defined to generate a create.sql file. the file will be generated, but with missing ';'-separators for each sql statement. is there a ...
0
votes
1answer
1k views

Persistence deployment issue

I have a hibernate project, which uses JPA. my persistence.xml contents is as follows: <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
0
votes
3answers
670 views

Combine two or more persistence.xml(s) into one , when packaging (war) many modules (Maven)

I have a maven-managed project with some modules (with jar package) , each module contains its "persistence.xml" in its META-INF directory. Another module take responsibilities to package these ...
0
votes
1answer
579 views

JPA persistence.xml share same jar file

I'm wondering if I can share the same jar file for several persistence units.. I mean: I have two persistence units described in my persistence.xml file and the entities are not in the same JAR. ...