Tagged Questions
0
votes
0answers
38 views
Web application JSF+JPA+EJB on Glassfish3.1.2 error creating stateless EJB
I keep getting an error on my project using JSF,JPA and EJB on Glassfish 3.1.2. Please note i'm learning how to integrate EJB as business layer.
Seems a common error, residing on JNDI lookup failure, ...
0
votes
0answers
99 views
Embedded glassfish + JUnit testing (Eclipse / Maven)
When I try to run JUnit test from Eclipse (or Maven), I get these lines right in the beginning of the log:
23.4.2013 8:12:25 com.sun.enterprise.v3.server.CommonClassLoaderServiceImpl findDerbyClient
...
0
votes
1answer
138 views
JPA + EJB testing with embedded glassfish v3
Trying to set up a JPA+EJB testing after these instructions:
http://ctpjava.blogspot.fi/2009/10/unit-testing-ejbs-and-jpa-with.html
There seems to be few problems that I can't seem to get quite ...
0
votes
0answers
78 views
Can't create JPA tables into derby with glassfish3
I am trying to create clone database(s) with JPA (2.0) into derby from a legacy database. The JPA entities were generated from an existing database (by JDidea tools I think), and now I am using ...
-1
votes
1answer
556 views
How to write JPA native query to join two tables. Eclipseink JPA,Glassfish3.x,EJB3.1, MySQL
What would be the correct way writing JPA native queries with joins and with Eclipselink JPA2.0 entities?
Can some one tell me to execute the following SQL query using Eclipselink JPA native queries ...
1
vote
1answer
37 views
@PreUpdate doesn't return correct exception message
To validate my entity beans I have created this validation method inside my bean
@PrePersist
@PreUpdate
public void validate(){
if (startTime.after(stopTime)) throw new ValidationException("Wrong ...
0
votes
2answers
583 views
Exception [EclipseLink-4002] while using native query for joining two tables
I have 2 tables Sponsors and Study.
The columns in Sponsor and Study tables are:
Sponsors table structure:
SponsorId: int primary key auto_increment,
SponsorName: varchar(30) unique not null,
...
1
vote
1answer
221 views
Liferay 6.1 with Glassfish 3.1.2: IllegalStateException: Must call associate() before calling activate()
I want to ask what is wrong with my code. I was having problems regarding IllegalStateException in my project. My set up is as follows:
Netbeans 7.2.1 + JSF 2
Liferay 6.1 GA2 bundled with Glassfish ...
0
votes
0answers
81 views
Memory Leak in glassfish3/ejb3/jpa2 - JPA Entity not GC
I have spent some time using JProfiler 7.2.1 to identify the weird RAM usage constant increase due to our webapp (EAR containing WAR and EJBs) deployed on:
Glassfish 3.1.2.2
using included JSF ...
0
votes
0answers
148 views
JPA runtime configuration
Using glassfish 3.1.2.2
I have:
A project JSF 2.1 with Net Beans
A resource jndi in netbeans project
<resources>
<jdbc-connection-pool allow-non-component-callers="false" ...
0
votes
1answer
254 views
java.lang.NoClassDefFoundError: com/mongodb/ServerAddress
i have an jee6 application with eclipselink and mongodb.
i use the nosql-extension org.eclipse.persistence.nosql
when i deploy my application on a local glassfish instance everything works fine.
...
2
votes
0answers
219 views
Calling CMT bean from BMT bean results in “Local transaction already has 1 non-XA Resource”
I have one EJB with Bean-Managed transaction:
@Singleton
@TransactionManagement(TransactionManagementType.BEAN)
public class BmtBean {
@Resource
private DataSource ds1;
@Resource
private ...
0
votes
1answer
59 views
Glassfish versioned execution of import.sql and update.sql
In JBoss we can execute import.sql when an app is deployed.
Can it be achieved in Glassfish? And also can we add several scripts for different version? For example in version 2.5, I add this specific ...
1
vote
1answer
193 views
Data does not persist by @Transational in spring
I use Spring 3.0.6, GlassFish 3.1, EJB 3, JPA 2 and my provider is EclipseLink (JPA 2.0)
My webApplication has these configuration files:
persistence.xml:
<?xml version="1.0" ...
1
vote
3answers
410 views
Spring Glassfish does not persist
I use Spring 3.0.6, GlassFish 3.1, EJB 3, JPA 2 and my provider is EclipseLink (JPA 2.0)
My webApplication has these configuration files:
persistence.xml:
<?xml version="1.0" ...
0
votes
1answer
178 views
String index out of range: -1 on find method of JPA
I am using HSQLDB + Glassfish + JPA + SpringMVC. I have done the JNDI mapping, created connection pool and placed my HSQLDB.jar(2.2.4) in Glassfish lib folder.
I am able to successfully deploy the ...
0
votes
1answer
220 views
Changing a column type from varchar to CLOB with JPA
I'm trying to change the data type of a column using the JPA annotation:
@Column(columnDefinition="CLOB")
private String description;
Whenever this entity is persisted, a VARCHAR value is attempted ...
0
votes
2answers
469 views
Glassfish connection pool don't work after restart server
QUESTION CHANGED
I have a connection pool in Glassfish 3.1 to connect to SqlServer 2008 Express, this pool works fine, but when Glassfish is restarted, the connection pool can't ping and stops ...
0
votes
3answers
150 views
Cache Isolation Level Warning on Parent Entity
After adding a second persistence unit and changing my application's data sources to XADataSource (MySQL), I'm now getting a confusing warning in the glassfish log about isolation levels on my parent ...
0
votes
2answers
2k views
EntityManagerFactory not being injected using @PersistenceUnit
I'm a java beginner. I'm in trouble to configure a persistance unit using JTA transactions.
I need to use a PostgreSQL database that is already defined, configured and populated. Using netbeans, i ...
1
vote
2answers
2k 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` ...
0
votes
1answer
348 views
JPA and DAO implementation under GlassFish 3.1
My application is using JPA and is deployed under GlassFish 3.1 (so using EclipseLink). It's working fine, but I'm now trying to use a DAO implementation.
I find that article. But it seems not to be ...
1
vote
2answers
690 views
Postgres + EJB3 pre-allocation size error
I am having problem with sequence in postgres and jpa
Caused by: javax.persistence.EntityExistsException:
Exception Description: The sequence named [shp_users_seq] is setup incorrectly. Its ...
1
vote
1answer
112 views
version property not getting reflected after inserting new instance
When I use em.persist() to insert a new instance of an entity-class, generated id is reflected in entity-class, but the version property still shows null, it is not reflected in the entity-class.
I'm ...
2
votes
2answers
725 views
Bypass Bean Validation during a select but not in insert/update
I'm using Glassfish 3.1.1 (JSF 2, JPA 2, EclipseLink, Bean Validation).
I'm trying to implement validation with the Bean Validation API with these annotations: @Past, @Future and @NotNull.
It works ...
0
votes
1answer
295 views
JPA Save list of dates
We must save a entity which holds a list of date objects. The list is annotated as follows:
@ElementCollection
@Temporal(TemporalType.DATE)
public List<Date> dates {
return dates;
}
This ...
1
vote
2answers
2k views
JavaEE 6: java.lang.IllegalStateException: Unable to retrieve EntityManagerFactory for unitName null
Yesterday when I was working on my JavaEE application, it was happily getting deployed to Glassfish 3.1 and all the [web, ejb, jpa] engines were working and I was able to interact with database ...
0
votes
1answer
674 views
Question about multi-threading and EntityManager
I have been developing my web-app using JPA 2.0 implementation EclipseLink 2.2.0. I finally got around to running multi-threaded code and I got this exception:
java.lang.IllegalStateException: ...
1
vote
0answers
209 views
@ManyToOne in multiple jars with Glassfish/EclipseLink
I've got two jars, dog.jar and person.jar, both packaged as ejb modules within a single ear. Dog.java is an Entity that references another Entity Person.java via a OneToMany mapping on an "owner" ...
2
votes
1answer
2k views
@ManagedProperty annotated type returns null
I have this Service bean:
@Stateless
public class BookService
{
@PersistenceContext(unitName="persistentUnit")
protected EntityManager entityManager;
public BookModel find(Long id) {
...
1
vote
1answer
1k views
JSF 2 OpenJPA 2 Glassfish 3.1 WEB9031 Error
I got this error which according to Apache Support is an issue relating with Glassfish rather than OpenJPA:
java.lang.IllegalStateException: WEB9031: WebappClassLoader unable to load resource ...
2
votes
1answer
2k views
JSF 2: h:link and getrowdata
If I have a h:dataTable in books.xhtml providing a list of records and I want to view a particular record, then add or edit that record, currently I have this:
<h:dataTable #{BookBean.books}" ...
1
vote
2answers
213 views
Inserting the value in the “other side” of a 1-to-n relationship in JPA (using EclipseLink)
I have an app using JSF 2, JPA 2 and EJB 3.1 running on GlassFish v3 (so it uses EclipseLink 2). This application has two JPA entities, Person and Message and each Message has a reference for two ...
1
vote
1answer
790 views
EJB's and JPA: Update on database will not show on page until server is restarted
I have built an application with EJB's and JPA2. If I have my page running and I change something in the database it will not show on the page. I've tried different browsers, non caching sessions of ...
2
votes
1answer
409 views
JPA 2.0 & EJB 3.1 - update the owner side relationship was trying to insert record?
I have a model:
@Entity
class A {
@ManyToOne
B b;
int i;
}
@Entity
class B {
@OneToMany(mappedBy="b")
List< A > list = new ArrayList< A >();
}
Now in my EJB service I ...
5
votes
2answers
4k views
JPA 2.0 (logging and tracing through) with Glassfish 3.0.1 and NetBeans 6.9.1:
I am using JPA 2.0 (EclipseLink provider) with Glassfish v3.0.1 and NetBeans 6.9.1 and am NOT able to see the queries and other logging information from JPA 2.0. Essentially I want to be able to see ...
1
vote
1answer
5k views
Hibernate returning no results show this error INFO: Not binding factory to JNDI, no JNDI name configured
I am using JPA with hibernate and trying to connect to the a datasource to retrive information but when i run the application i get no error as such but no results are displayed when i run the ...
3
votes
1answer
2k views
Learning resource for Configuring Hibernate JPA 2.0 on Glassfish server
I am trying to create a new JEE project using hibernate and JPA 2.0 on the glass fish server. Can you guys provide me some resources to configure the above so that they work seamlessly? I have tried ...
2
votes
1answer
820 views
Slow JPA startup
I created the JPA 2.0 entity classes for our whole database (~200 tables), and now each time I rebuild my application and start it for the first time I get these messages:
INFO: ...


