Tagged Questions
0
votes
0answers
20 views
Hibernate JPA maven
I want to use Hibernate as JPA provider with glassfish server.
I added hiberante-entitymanager dependency with maven but i keep getting this error every time i run the project. Am i missing another ...
0
votes
2answers
22 views
How can I make this sql query with jpa ?
I'm trying to create a query in my entities.
I have these following tables in mysql DB :
Categorie : id, nom ...
Article : num_code_barre_, categorie ...
In my entity Categorie :
...
@Id
...
0
votes
1answer
32 views
NetBeans, GlassFish and Hibernate JPA
On work, im using Eclipse, Jboss and Hibernate JPA. For a smaller, private project I like to use Netbeans, GlassFish and Hibernate JPA.
Problem: I want hibernate to generate the tables automagically ...
0
votes
0answers
27 views
Fail to inject EntityManager when using GlassFish Application Versioning
In my application, I have an EntityManagerProducer:
public class EntityManagerProducer {
@Produces
@PersistenceContext(unitName = "PERSISTENCE_UNIT_NAME")
private EntityManager ...
2
votes
0answers
43 views
How can I use SLF4J for my Java EE web application deployed on GlassFish 3 with Hibernate JPA?
Is it possible to use SLF4J in a specific GlassFish application and configure SLF4J solely for that application? We are currently struggling with the fact that GlassFish itself GlassFish with ...
0
votes
1answer
50 views
Automatically compute hash value for password field
Is there any way to tell Glassfish that the hash value for a certain data member of an entity class should be calculated and stored in the database instead of the original value?
0
votes
1answer
115 views
Glassfish 3.1.2 “Could not resolve a persistence unit corresponding to the persistence-context-ref-name”
My project has the following structure:
EAR (derp.ear)
|
|____ derp-ui.war
|
|____ busctrl.jar
|
|____META-INF
|
|
_______ ...
1
vote
1answer
66 views
EclipseLink: Value of Column is null while Deleting in ManyToMany-Relationship
I have a problem with one of my entities.
There are 3 Tables (UserAccount, UserRole, Role) for Glassfish Access Management and two Entities UserAccount and Role mapped by "ManyToMany" to each other.
...
0
votes
0answers
36 views
Use Hibernate 3.6 in Glassfish 3.1.2
I would like to update Hibernate JPA provider for Glassfish 3.1.2. However, in the updatetool, I only see 3.5... but I would like to use 3.6..
I prefer to use define it in my maven pom.xml file, but ...
1
vote
1answer
39 views
JPA EclipseLink Weaver generates call to porperty getter inside its setter -> NullPointerException
I have an @Embeddable class that uses property access to wrap another object that's not directly mappable by JPA via field access. It looks like this:
@Embeddable
@Access(AccessType.PROPERTY)
public ...
0
votes
0answers
41 views
Correct usage of shared EntityManagerFactory across multiple EJB bundles on GlassFish
I'm building a new Java EE app which will run on GlassFish. I'm creating the APIs and functionality as OSGi bundles which will be deployed to GlassFish.
From what I can tell, I can no longer do this ...
0
votes
0answers
25 views
How to disable the JPA bootstrapping on glassfish 3.1.x?
Is there a way to tell Glassfish to ignore META-INF/persistence.xml?
I would like to use Spring's LocalContainerEntityManagerFactoryBean instead of obtaining an EntityManagerFactory from Glassfish.
0
votes
0answers
27 views
GlassFish How to configure java:global/employeeDS on GlassFish4
I use the following command provided by EclipseLink/Examples/JPARS/Simple,
Quote:
git clone git://git.eclipse.org/gitroot/eclipselink/examples.git
There is a project named employee, it is very ...
0
votes
1answer
88 views
“uses a non-entity [class java.lang.Double] as target entity in the relationship attribute”, what do I do wrong?
I cannot run my project because I get this error:
Exception Description: Predeployment of PersistenceUnit [RekeningAdministratiePU] failed.
Internal Exception: Exception [EclipseLink-7250] (Eclipse ...
1
vote
1answer
123 views
ClassCastException on itself after redeploy of same application`
I am developing a JSF application with Netbeans and Glassfish. When I change something and Netbeans redeploys to Glassfish, then a ClassCastException is been thrown on the entity class itself.
Caused ...
1
vote
4answers
107 views
How to get Eclipselink samples to work: “student” and “mysports” samples
I've been trying to get the following Eclipselink samples to work, with less than 0% success:
A)
http://wiki.eclipse.org/EclipseLink/Examples/JPARS/Simple
B)
...
1
vote
0answers
57 views
WEB9031 - cannot store entity with sequence generated id
I am using glassfish, postgres and openjpa.
I only have one bean and first want to create a new intance and store it in DB. I created a new User-Object, filled it (except the id) and got - trying to ...
0
votes
0answers
24 views
Adding additional Entities to Java EE EclipseLink based app via osgi plugin
I have an application based on Glassfish 2.1 (moving to GF 3 later this year). We are EclipseLink based. We also use Felix for osgi support in our application.
I would like to be able to load a ...
1
vote
2answers
124 views
JPA - Changing a reference to an existing (but detached) entity causes a duplicate to be inserted
I have two entities with a uni-directional many-to-one relationship:
Many Bars have one Foo
When I try to update a managed Bar instance by changing its Foo to an existing detached Foo instance, ...
0
votes
1answer
109 views
JPA EAGER fetch works only if server is restarted
Good evening everybody, this is my first post on Stack Overflow.
I have been quite recently introduced to Java 6 EE and, in particular, to JPA as part of the JSF 2.1 framework and I am now facing a ...
4
votes
0answers
85 views
Java EE: Eclipselink transaction missing
I have a maven based Java EE project that should run on GlassFish v3. There is a JSF ManagedBean that injects an EJB service. ManagedBean calls one of the injected EJB's method on button click where ...
0
votes
0answers
35 views
When exactly does JPA perform the commit?
We are using a clustered Glassfish 2.x with TopLink and an Oracle database.
JTA is the specified transaction type of the persistence unit, and we use the default caching.
Now we have seen some ...
0
votes
1answer
118 views
EclipseLink ValidationException - non-entity [class long] as target entity in the relationship attribute [field providerId]
I received the following error when trying to deploy an an application to Glassfish. Apparently there's something incorrect with my relationships.
Error from Glassfish Server when attempting to ...
0
votes
1answer
184 views
JPA 2.0 & MySQL are not respecting case sensitive table names
I have a strange issue my ear project:
I have put the correct annotations on my entity class:
@Entity
@Table(name = "PRODUCTS")
But when I deploy my application on glassfish 3.1.2.2, I find that ...
0
votes
3answers
88 views
what's wrong with my @PersistenceContext?
I'm using Eclipse Juno, Glassfish 3.1.2, and MySQL 5.1.
I'm building a simple EJB & JSF application. I created the following eclipse projects:
appEAR <-- the EAR file
appEJB <-- contains ...
0
votes
1answer
132 views
Giving Persistence Database setting on first deploy of JSF application
I have developed a JSF application with JPA using Netbeans and GlassFish. It is working fine within the Netbeans environment. Now I want to deploy it a remote GlassFish server with different database ...
0
votes
0answers
74 views
Glassfish server cache not getting updated when using @XmlAdapter?
I've stumbled upon a strange problem using a @XmlAdapter. Let me try to sketch the situation:
At the server side I have a class Cows:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement
public ...
2
votes
1answer
148 views
Arquillian: Do I need domain.xml and arquillian.xml for minimal Glassfish Embedded tests with Derby DB?
in the internet I often find recent but contrary information on this topic..., thus I would like to ask a question on minimum requirements.
My goal is to do a very simple integration test of simple ...
0
votes
2answers
169 views
0
votes
0answers
39 views
how to ehcache jpa or hibernate by multiple webapplications
I need an advice over following stiuation.
I have a 1 database :) and this is used by different java6 webapplications. I have also a jax-rs rest application only to read some data from the database.
...
0
votes
0answers
41 views
How to prevent “Data truncation: Data too long exception” [duplicate]
A user is reporting my service is returning him error, reporting following exception:
Internal Exception: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column ...
0
votes
1answer
188 views
JPA EntityManager Nullpointer Exception when splitting functionality in multiple classes (Glassfish, EclipseLink)
i know there are masses of questions concerning a similar problem, but i didn't manage to extract a solution for my problem.
I'm trying to build a RESTful webapplication that serves data, which is ...
2
votes
2answers
307 views
How to define a test datasource for an embedded EJB container
I am trying to test my EJBs using an embedded EJB container. In production, I rely on a JTA datasource configured in the application server. However, during testing, I want to connect to a different ...
0
votes
1answer
75 views
JPA: “Bad type on operand stack in arraylength”
I'm trying to deploy a webapp in glassfish with the following entity managed by JPA. In the database, an array of int is stored in a varchar, and I split/join this String in the setter/getter
@Entity
...
0
votes
1answer
203 views
Glassfish @PersistenceContext
I have the ollowing persistence.xml in my JSF project using eclipse:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
1
vote
1answer
185 views
Hibernate, Query SQL with params. Bad Performance
I have an issue related to the performance of a SQL query using JPA.
Response time:
Using Toad - 200 ms
Inside my project using Glassfish 2.1, Java 1.5, Hibernate 3.4.0.ga - 27 s
Oracle 10g
...
0
votes
2answers
107 views
Persisting class gives null-value on ID
I'm trying to persist a User-class, which contains 2 lists: one with users to see which are following that specific user, and one with users to see which users that specific user follows.
User.java:
...
1
vote
1answer
290 views
Can not creat tables from entities. JTA and Glassfish
I have a question about JTA with Glassfish. For days Iam trying to solve this problem. I want to write an Entity in a database. To keep it simple I use the GlassfishDB. In the Glassfish-Admin Console ...
0
votes
2answers
255 views
java.lang.NoSuchMethodError: javax.persistence.EntityManager.getMetamodel()
How to fix this error using OpenXava 4.6 with Glassfish 2.2:
javax.servlet.ServletException: java.lang.NoSuchMethodError: ...
0
votes
1answer
644 views
Unable to build EntityManagerFactory on Glassfish Netbeans
I am studying JSF by implementing a web project. These ae my environment and tools:
-Netbeans 7.2.1
-Glassfish Server 3.1.2.2
-JSF 2.1
-Hibernate
-Oracle 11gr2
I use stateless EJB ...
0
votes
1answer
127 views
configure external database with maven embedded-glassfish
I need to create educational demo of java web-application using EJB.
I want to use maven embedded-glassfish plugin to simplify matter for people who will run this demo (so that they need not manually ...
0
votes
2answers
157 views
Having an error while deploying web project on to Glassfish 3.1
I am having following error while deploying web project war file to Glassfish 3.1
...
1
vote
4answers
2k views
Java, JPA, Glassfish, Invalid resource : jdbc/__default__pm
I use Glassfish 3.1.2.2 (build 5), JPA, EclipseLink, MySQL
I created MySQL pool via Glassfish admin panel. Ping to MySQL from GF admin panel is ok.
I created app with persistence.xml:
<?xml ...
0
votes
1answer
383 views
JDBC MySQL - Connection closed
I have a web application. I use JPA (Hibernate as vendor), the application run on glassfish server. After several minutes using the application (including operations that retrieve and save entities to ...
0
votes
1answer
1k views
EclipseLink “create-or-extend-tables” not working: “…unknown column…”
I am using EclipseLink 2.4.1 with Glassfish and a MySQL database for persisting entities.
I added a field to an entity, and when I try to persist this entity it says the new field is 'unknown'.
How ...
0
votes
1answer
281 views
Using jndi with jpa and spring on glassfish
I have a web application that runs on glassfish 3.1. I am using JPA (Hibernate) configured with spring.
This is my persistence.xml:
<?xml version="1.0" encoding="UTF-8"?>
<persistence ...
0
votes
1answer
128 views
EclipseLink JPA 2.0. “unknown enum constant javax.persistence.LockModeType.NONE”
I have a Glassfish v3 with a remote EJB. I use this EJB to manipulate a data base using EclipseLink. Regarding this question, i'm now trying to import the EclipseLink jars to my client application as ...
0
votes
1answer
100 views
Error on client side while calling a business method on server side returning managed entity
My client application is a standalone java application using Netbeans RCP. The client application connect to a remote EJB mounted on a Glassfish server.
On the server side, i have a business method ...
3
votes
4answers
2k views
How to refresh JPA entities when backend database changes asynchronously?
I have a PostgreSQL 8.4 database with some tables and views which are essentially joins on some of the tables. I used NetBeans 7.2 (as described here) to create REST based services derived from those ...
3
votes
1answer
546 views
Container testing of jar with embedded glassfish using gradle fails
I am using JUnit and embedded glassfish to test some code using CDI. This seems fairly straightforward but I must be missing something. I've created a simple project which demonstrates the problem.
...



