0
votes
1answer
26 views

Retreive initial data from EJB in View Scoped JSF Managed Bean

It seems that an EJB(stateless) cannot be injected into a View Scoped JSF Managed Bean. Doing so gives a com.sun.faces.mgbean.ManagedBeanCreationException: ...
0
votes
1answer
41 views

Referencing JPA project in a JSF project

I want to create a JSF project with JPA. I am using eclipse juno 4.2 How can I integrate both in one project? I read somewhere that keeping JSF and JPA project separately is a good practice, but I ...
0
votes
1answer
23 views

Unable to resolve org.eclipse.persistence.exceptions.EntityManagerSetupException

I am trying to run the maven project, i am able to deploy the project but after deploying the project when i click any function to perform an operation it shows following exception: root cause: ...
-2
votes
0answers
28 views

Project Netbeans JPA JSF , I'don't see the data i see just the name of the colum [closed]

I create a web Project with Netbeans using JPA JSF , when i run my project I'don't see the data i see just the name of the colum in my JSF page (JSF Data Table from entity). can some one help me ...
0
votes
2answers
52 views

javax.persistence.TransactionRequiredException in small facelet application

I'm trying to persist some values to a MySql database from a small facelet application but keep getting this error. I had this same application with a JPS page and a servlet and it worked fine with ...
0
votes
2answers
47 views

java.lang.IllegalArgumentException: Object: se.nackademin.BeachBoysSweden.entities.Book@79da4980 is not a known entity type

Im working on school assignment but keep getting java.lang.IllegalArgumentException when trying to save my entity to mysql database. This project uses JPA, EJB, JSF, Glassfish and connection pool.Keep ...
0
votes
1answer
50 views

How to display many to many jpa collection in jsf?

i made many to many join table between users and groups tables . so i have a collection in each entitie ( Users and groups ) @ManyToMany(mappedBy = "usersCollection") private ...
0
votes
1answer
29 views

Multiple JPA queries error

I want to run multiple queries using @NamedQueries annotation but it is giving error that : 1. The attribute value is undefined for the annotation typed NamedQueries 2.NamedQueries can not be ...
-2
votes
2answers
46 views

Database Communication in JSF/EJB (theoretically) [closed]

I'm currently writing my diploma thesis and I'm stuck at the Database Communication topic. My problem is not the implementation, but rather the architecture behind JSF. I read a lot about it, but ...
0
votes
2answers
36 views

accessing native query list using ui:repeat

lets say i have a table test with columns id and name on my bean i got this query public List getTestList(){ Query q = em.createNativeQuery("select * from test"); List list = q.getResultList(); ...
0
votes
0answers
27 views

No datasource connection: Unknown service requested: ConnectionProvider(Hibernate)

I have a project EJB/JPA with Hibernate on Glassfish and I can not establish a connection to the datasource that I have properly configured(ping succeeded!) on glassfish. When my application tries to ...
0
votes
3answers
141 views

java.lang.NumberFormatException: For input string: “type”

This is my code which executes two methods: <h:panelGroup> <br /><br /> <h:outputLabel id="yearLbl" value="Year:" /> <h:outputLabel id="selectType" /><br ...
1
vote
1answer
42 views

'Search engine' on local database

I have a webapp with multiple objects with multiple Strings I'd like to search through. I would like to sort 'matches' by the best 'match'. Example: searching for 'stackoverflow is great'. ...
-2
votes
1answer
36 views

JSF internalization

I read answers on JSF internalization implemented it, but still having issues. I want to implent internalization for JSF, I used Eclipse Link/JPA for my rny entities, I want to be able to load the ...
0
votes
0answers
107 views

JSF JPA validation error: why Value is not valid

Hi I have the following: <h:selectOneMenu id="companyID" value="#{oferController.selected.companyID}" ...
0
votes
1answer
74 views

JPA update one to one association object leads to duplicate entry exception

I am using JSF 2.0, Tomcat 7.x and EclipseLink as JPA-Provider. I want to update an entity instance with a onetoone association, more precisely a Booking got a User property named booker. ...
0
votes
0answers
33 views

JPA LazyInitialization with OpenEntityManagerInViewFilter configured

I have a problem with LazyInitializationException and i am already using OpenEntityManagerInViewFilter in my web.xml. here is my web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app ...
0
votes
0answers
92 views

LazyInitialization with JPA Spring Hibernate JSF 2.0

I'm having a problem with my web project... The problem is about LazyInitialization... I'm gonna show you the error: failed to lazily initialize a collection of role: ...
1
vote
1answer
125 views

Error Initialize ManagedBean with Spring JSF 2.0 Hibernate Maven

i am working with JSF 2.0 , Spring, Hibernate and i'm having a problem with a initialization of a ManagedBean. Here is the error: SEVERE: Error Rendering View[/cadastroDeProdutoAdminSistemas.xhtml] ...
0
votes
1answer
59 views

Transient on EntityManager causing exception

I am using view scoped managed bean for my JSF application. Since view scoped bean needs to be serialized I have implemented Serialiazable. But problem is with the EntityManager. I tried bypassing it ...
0
votes
0answers
66 views

sorting primefaces treeTable from recursive table in database

I'm using primefaces 3.4.2 and I want to load in a tree table a recursive table from my database. How can I do this? My recursive entity : `@Entity public class Application implements Serializable { ...
0
votes
1answer
31 views

tomcat7 fails to run with JPA [duplicate]

I am working on a Java EE application with JSF(using JSF Majorra 2.1.6) et JPA(using the librairies EclipseLink Juno) and tomcat 7 server . The problem is when i add a JPA application to the ...
0
votes
0answers
79 views

How to access a bean in ServletContextListener's contextDestroyed

I have a JSF application that uses JSF 1.2 and Servlets 2.3 and Seam 2.2.0. I want to run a sort of backup everytime the application closes. I have tried using the ServletContextListener like this: ...
0
votes
1answer
60 views

JSF redirect after EJBException

I'm using JSF with JPA. My error handling is done by a global exception handler which will be triggered if any error occurs. In this handler, I just perform a redirect to my error.xhtml. This works ...
0
votes
0answers
122 views

Basic issue with jsf to persist one to many relation

I'm new to JPA and Java EE in general. I've got a One to Many relation between two entities (Question ==< Answers). I generated the entities with NetBeans and used PrimeFaces to generate the ...
0
votes
1answer
143 views

JSF and JPA: Using Filter in persistence/model layer

I'm practicing JSF and JPA and the example I'm following there is a filter class for the model/persistence layer: @WebFilter(servletNames = { "Faces Servlet" }) public class JPAFilter implements ...
0
votes
2answers
48 views

Storing jpa entities in the jsf backing bean as property

In my jsf bean's init method I'm making a call to the service which fetches the object from the database. We are using hibernate. This init method prepopulates values on the form. The user goes makes ...
0
votes
1answer
281 views

Display Array List of Objects in JSF table

I want to display ArrayList of objects into JSF table: I created this Object: public List<TData> td = new ArrayList<TData>(); public class TData { private long id; ...
0
votes
1answer
95 views

i am getting nullpointer exception while using session ejb in my managed bean

my sessionfacade class package com.entity; import javax.ejb.Stateless; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; ...
1
vote
1answer
48 views

how to pass the value which i want to update in my table using the jsf and jpa

In update query, how to pass the value which i want to update in my table using the jsf and jpa i create the namedquery in my entity class @NamedQuery(name = "Showdetail.updateByShowDetailId", query ...
0
votes
1answer
191 views

JSF 2.1: h:dataTable does not refresh data

I've set-up a system which allows you to view categories of IT-equipment and their subcategories. Now I want to be able to add a subcategory to a parentcategory via JPA. The problem is that my entity ...
0
votes
1answer
74 views

Link fires method multiple no. of times

The problem is that whenever I click the link Next page on Home.xhtml to goto getMoreStatusList Page, the function getMoreStatusList is called non-stop until it throws a index out of bound exception. ...
0
votes
1answer
66 views

Create a subclass warning with JPA, JSF in Netbeans

I am using Netebans 7.3 to develop a JSF application with JPA. When I create a new Entity, there is a warning at the @Entity line just above the class decleration "Create Subclass" and when I click on ...
0
votes
1answer
129 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
1answer
156 views

Spring Security to user JPA connection

I tried to follow this post from StackOverflow (How to use Spring security with jpa?) without success. I implemented an UserDetailsService: import javax.inject.Inject; import ...
-2
votes
1answer
105 views

JPA, How to update foreign key in JPA using eclipselink

I have the following scenario. Tables Project ProjectID             ProjectName        ClientId 1 ...
0
votes
1answer
288 views

Null pointer exception using weblogic 10g bean injection jpa/ejb

I have a problem with my EJB / JPA project. I use netbeans, weblogic 10g and Java EE app. My problem is, I create "Entity classes from database" and after that I create "session beans for entity ...
0
votes
1answer
82 views

how to merge a shop entity to a client entity (many to one) in jsf

I'm trying to merge an existing shop to a new client in jsf but it isn't successful. The program consists basically off a backing bean controller,an ejb and the jsf page (register) I have been able to ...
2
votes
1answer
132 views

Bad UTF-8 encoding when writing to database (reading is OK)

I have big problem in my web application using JSF and EclipseLink JPA to MySQL database. When I read data from database JSF reads and writes my charachters in UTF-8 OK. but in database characters ...
-1
votes
1answer
121 views

spring3 jpa2.0 tomcat error java.lang.IllegalArgumentException: Object: com.web.emscs.entity.Student@1edf83b is not a known entity type

I am trying to configure spring with eclipselink jpa but am facing the following error after given some data in UI and persist to database(oracle 10g). java.lang.IllegalArgumentException: Object: ...
0
votes
0answers
101 views

RAD/Eclipse Configure JPA entities failing

Previously running portlet throwing error when 'Configure JPA Entities...' (have used this functionality yesterday successfully). Message as follows org.eclipse.core.runtime.CoreException: ...
1
vote
1answer
149 views

Hibernate - why are there multiple repeated select statements in debug log?

Service method returns an object like this return entityManager.find(Event.class, id); inside of a @ViewScoped bean The Event object has about 40 fields, some of which are mapped @ManyToMany. ...
0
votes
1answer
150 views

Displaying two queries result i JSF

I'm trying to add some features to project which I find. There was query which selects specified results. Now I'm trying to get second query's results. Here's my code: Car.java @Entity ...
1
vote
2answers
281 views

Avoid validation of @Size annotation in JPA

I have a JPA entity with the following attribute: public class Person implements Serializabe { ... @Basic(optional = false) @NotNull @Size(min = 1, max = 45) @Column(name = "name", nullable = false, ...
1
vote
2answers
300 views

JPA executing before insert trigger in one project and having different behavior on another

Yeah, I know, title is kinda confusing, but here is the situation: I have two projects, that should work the same way. Both of them access a Oracle database. Each table on Oracle database have an ...
-2
votes
1answer
46 views

Execute CriteriaQuery too slow

I've got datatable on page that query from DB. Execution time is too slow. The page takes too much time to render. How to speed it up? Stored procedures aren't a desirable solution. <p:dataTable ...
3
votes
2answers
664 views

“could not initialize proxy - no session” with an open session available

I work with JSF 2 (MyFaces 2.1.7 and Primefaces 3.4.2), CDI (Weld-servlet 1.1.10), JPA 2 (Hibernate 4.1.7) and Lombok 0.11.2. All this runs on Tomcat 6 and 7. I use the OpenSessionInView pattern, ...
0
votes
1answer
109 views

With JPA, EclipseLink, JSF and reporting dynamically

I have 3 database tables and each table is represented by an Entity Class. What I want to do is to Join these three tables with a special condition and select maximum one column from each table wrap ...
0
votes
0answers
162 views

primefaces p:datatable : why can't I just use System.identityHashCode for rowKey

I have a web application with the following stack: JSF / PrimeFaces , EJB3 , JPA. Is there anything wrong with the following code (the need for this kind of code is explained at the end of the post): ...
2
votes
0answers
232 views

thread-safety of injected EntityManager in JSF environment

Are there any thread-safety issues or other code smells with the following pattern? Stateless EJB3 bean injected with container-managed EntityManager: @Stateless public class ServiceA implements ...

1 2 3 4