0
votes
2answers
20 views

How to manage many to many relationships on a form with jsf

So I have these tables: ocurrencia and persona, they have a many to many relationship. This table is called identificacion. I am using hibernate. This is the code on ocurrencia @ManyToMany(fetch = ...
0
votes
2answers
72 views

primefaces lazy data loading and hibernate, java.lang.NullPointerException error

I followed the example of the page of primefaces (http://www.primefaces.org/showcase/ui/datatableLazy.jsf), and it worked but because the example is loading the list on the constructor it is no ...
0
votes
1answer
105 views

getting error: Could not load JDBC driver class [org.postgresql.Driver]

I'm trying run a Junit test,have configured before only projects without maven, now i am trying to make this integration, but i stop in this following error: java.lang.IllegalStateException: ...
0
votes
0answers
24 views

Hibernate session not updating bean when using Lock

When i use the method lock(to turn persistent a transient instance), the method update (from Session) don't do nothing! My code is this: session.getTransaction().begin(); ...
1
vote
4answers
248 views

How to use one transaction per request Spring + Hibernate + Spring Security + JSF

I'm working in a web app using JSF 2.1 + Hibernate 4.1.7 + Spring 3.2.1 + Spring Security + SQLServer2012. Everything works fine i.e. CRUD operations. But some methods need to work with 2 or more ...
1
vote
0answers
44 views

Entities are not mapped

i have an application works good and i have to change my database structure and when i changed it and i generate my model classes with hibernate i got this exception: SEVERE: Servlet.service() for ...
0
votes
0answers
27 views

Transaction not successfully started

i can't find the mistake in my code. i have "Transaction not successfully started" error, and my code looks right, i hope finding help. this is my code: @Override public void updateDate(Date ...
0
votes
0answers
81 views

Sort/Filter dynamically generated column of <p:dataTable>

I am facing problem to filter/sort a column role(Lazy DataModel) of datatable which is not a property of entity class , because the column value is created dynamically dependent on user currently ...
1
vote
2answers
215 views

PrimeFaces DataTable list display and selection

I would like to ask you for a help because I stuck with following problem. Another thing what I have to say on the start is that I am a pretty new in JSF developing. I am using JSF, PrimeFaces, ...
0
votes
1answer
90 views

java.lang.NoClassDefFoundError: Lcom/ardia/service/ComposantService; with spring

I have a web application wich uses JSF 2.0, Spring 3.0 and Hibernate 4. After two days of setup I finally got a list in my datatable, but I faced a problem as well. I can tell that because I saw ...
0
votes
1answer
89 views

selectOneMenu with Converter - java.io.NotSerializableException error

i have the following JSF form: ... <p:column> <h:outputText value="Image Id:" style="font-weight:bold; padding-right:10px" /> </p:column> <p:column> <h:outputText ...
0
votes
0answers
50 views

JSF App with separate Hibernate jar file

I need to create two separate JSF 2.0 applications from scratch. Once will be an admin app where users log in and edit data (this will be internal), the other will be an app for displaying data on ...
0
votes
1answer
129 views

JSF/Primefaces SelectedOneRadio: value is null

I have a Primefaces' SelectOneRadio that extend standard SelectOneRadio. My problem is that when I select the option that I want download this or not saved or is lost. I enclose the code. Why does ...
0
votes
2answers
78 views

Making Hibernate insert data on system start

The Hibernate property - hibernate.hbm2ddl.import_files - will only be fired when the - hibernate.hbm2ddl.auto - is set to create. Is there any implementation to "change" that? Not the way ...
0
votes
1answer
60 views

Hibernate saves empty Spring autobound ojects

I'm using Spring + JSF2 + Hibernate to build a web application. Two relevant classes look like this: @Entity @Table(name="people") @Named public class Person implements Serializable { private int id; ...
0
votes
1answer
61 views

JSF updating entity doesn't working normally

I am trying to develop a web application using JSF 2, Hibernate and for server I am using JBoss AS 7. I have an entity Slide and a bean SliderAction. I can successfully add entities to my database and ...
0
votes
0answers
82 views

JSF 2.0 and Hibernate Issue

Good evening, i have a problem in integrating JSF 2.0 with hibernate 3.5, i have a managed bean that calls a method from a DAO which uses HQL to retrieve data from entities, here's the code for the ...
4
votes
1answer
229 views

Hibernate JUnit test persistence vs. jsf live persistence

As you can see I have a HibernateUtil that I use to persist data to my database. The same code I use in my userBean.save method is the same code I use in my junit test. In my junit test below it works ...
0
votes
0answers
126 views

JBoss AS 7.1 JAAS loses user role if a user object is updated with EntityManager

Using JAAS in Jboss AS 7.1 (picketbox) to authenticate members. It all works fine except that there is a very annoying reference problem: the security realm in use, (jboss as 7.1 standalone.xml) ...
0
votes
0answers
151 views

incorrect update behaviour in Hibernate with dynamic-update, select-before-update

i try be specific to my issue I trying update specific columns in Entity in this flow: i click on input field(telephone) value >> change that value >> press Enter >> ajaxListener call method for ...
1
vote
2answers
41 views

Many classes/interfaces with general project template

I am looking for a general project template to build a web applications with the following technologies: JSF2, Spring3 and Hibernate4 I found an article that proposes a template but I hesitated ...
-5
votes
1answer
79 views

which hosting service to go for java based project [closed]

I have purchased a domain name and shared hosting from godaddy.com. the shared hosting cost me about 65$ per year. but when i called them, they are saying the shared hosting supports only PHP and ...
2
votes
2answers
182 views

Unable to create managed bean DBUserMBean. The following problems were found: - Bean or property class (…) cannot be found

That's my first question on stackoverflow and my english isn't perfect yet, so i'm really sorry for the grammatical errors etc. Here is the problem : I make my first steps in web-application ...
1
vote
1answer
422 views

primefaces editable dataTable updates after validation failure in previous rows

i googled my problem a lot but it seems that no one has the same exact problem or it is solved not in what i want I have an editable <p:dataTable editable="true" editMode="cell"> it doesnot ...
1
vote
0answers
128 views

How to use jsf @ConversationScoped bean with an hibernate composite primary key?

im a newbe with java and jsf and hibernate and i´ve been using jboss forge to generate the crud functions for my entities but i dont know how to make it work with hibernate @embedable id, here is my ...
0
votes
0answers
377 views

Constructor must call super() or this() before return

I'm using JavaServer Faces and Hibernate 3.2.5 and have problems with compiling this code: package org.tuke.regbudov.entity; import javax.persistence.metamodel.SingularAttribute; import ...
0
votes
2answers
107 views

Spring Session Management Issue

I am using Hibernate+Spring+Jsf in my demo application i will want Spring will handel transaction management So i made these entries in application-context.xml file.. <beans ...
0
votes
3answers
1k views

Spring DAO is not injected in JSF managed bean

I am using JSF2+Spring3.1+Hibernate4 in my demo application and i will want to use annotation to create session factory but my DAO class is not initialize in Jsf Managed Bea class so i am getting Null ...
2
votes
1answer
146 views

Cross Field Custom constraint annotation not working

i have a dropdown field named ContactTypeName which have the values like phone, email etc and an input field named Contact i want to validate the input field for valid email address if the dropdown ...
1
vote
1answer
131 views

How to access FacesContext in Hibernate Envers without Seam?

We're implementing Envers in our project for database auditing, and have run into a snag. We don't know how to determine what user is making the change. All the examples I can find use Seam and their ...
2
votes
1answer
333 views

JSF - Validation fails on SelectOneMenu (error is not valid) - Hibernate related?

I already read a lot of questions here about this same problem, and I can assure you that is not the EQUALs method, and also, it is not a problem as the bean scope. So, lets see what is happening. I ...
0
votes
0answers
194 views

Spring 3 @Autowire not working

I am using Hibernate and JDBC connection with Spring. I am getting the Dependency Injection (DI) for Hibernate module and the same is not working (DI) for my JDBC connection modules. I have the ...
0
votes
0answers
201 views

PrimeFaces datatable pagination shows ' no records found '

I have an application using JSF2.0, Spring3 and Hibernate4. I am displaying values in Primefaces 3.4.2 datatable pagination http://www.primefaces.org/showcase-labs/ui/datatablePagination.jsf. the ...
0
votes
1answer
354 views

Hibernate replaced PersistentBag with ArrayList is returned back again in the same request

In a backing bean edit() method, I have the following code public void edit(Entity e) { this.entity = entityService.find(e); this.entity.setLazyList(new ArrayList(this.entity.getLazyList())); ...
0
votes
1answer
740 views

Primefaces datatable lazyloading pagination number of rows are wrongly displayed

I am trying to implement lazyloading for Primefaces datatable. I have a filter condition which I have implemented as public List<Request> getRequest(int startingAt, int maxPerPage, ...
1
vote
2answers
2k views

Primefaces datatable pagination not working

I have a application using JSF2.0, Spring3 and Hibernate4. I am displaying values in Primefaces 3.4.2 datatable, the problem is when I click the pagination, datatable rows always remain in first 10 ...
0
votes
3answers
990 views

ejb 3.1 & jsf & jboss 7.1 & eclipse indigo

I have been starting use Eclipse Indigo+JBoss 7.1+MySQL. I am beginner programmer in Java EE. So, I have a problem with tutorial: http://www.youtube.com/watch?v=z55reyPqH44. (it's simple example how ...
0
votes
2answers
487 views

Spring Inject annotations causing nullpointer exception

This post is continuity of Declaration of beans in applicationContext.xml I have a small application using Spring 3 and Hibernate 4 with JSF2, When I am running the application I am getting. ...
3
votes
3answers
519 views

Declaration of beans in applicationContext.xml

I have a question regarding declaration of classes in applicationContext.xml In applicationContext.xml do we need to specify all the classes from the application? E.g. In my small web application I ...
0
votes
1answer
1k views

org.hibernate.LazyInitializationException: could not initialize proxy - no Session again

I know that my question very strange and difficult to understand I create some structure of my project. But every time I faced with different problems as could not initialize proxy - No session ...
0
votes
1answer
259 views

JSF2 + Spring3 and hibernate: Spring Managed Bean (@Scope value=“view”) LazyInitializationException exception

I've created custom spring scope using code found in this link which enables the use of view scoped Spring managed bean similar to that of JSF2 @ViewScoped. When user presses the Submit button the ...
0
votes
1answer
282 views

Integrating JSF2 with Spring3 and Hibernate4 - applicationContext.xml error?

I'm trying to create a JSF2 application which uses Spring3 for the DI and hibernate to handle the persistence. I'm stock on the following error and don't know how to proceed: 26/10/2012 1:57:04 PM ...
0
votes
1answer
312 views

java.io.NotSerializableException with spring and @ViewScoped bean

I do migration form JSF 1.2 to JSF 2.1 in a quite large project. There is a few libraries use: hibernate 3.6, spring 3.1(far as i know updated form 2.x by my predecessor), acegi-security-1.0.5, ...
0
votes
1answer
893 views

Error deploying JSF 2, Spring 3.1 app on JBoss 7.1.1 > java.lang.NoClassDefFoundError: javax/servlet/ServletOutputStream

Trying to deploy a JSF 2 app with Spring 3.1 + JPA 2 (Hibernte 3.6.8) into JBoss 7.1.1 AS. The app was working fine on tomcat 7. Now, I have already added and changed some configurations. Added ...
1
vote
0answers
99 views

JSF2 + Hibernate + Guice - What benefits is introduced by using DI (Guice)?

I'm currently preparing to start work on a new project to learn best practices on integrating JSF2 , Hibernate and DI (in form of Guice). I've set my aim on JSF2 (myfaces) for presentation layer and ...
1
vote
0answers
270 views

JSF2 ViewScope/Spring/Hibernate getSessionFactory NULL Error

We are using spring + hibernate + jsf + mysql + atomikos in our project. Here below the version details: Spring: 3.0.5 Hibernate : 3.6.0 JSF : 2.0 (myfaces 2.0.12) Mysql: 5.1.38 (InnoDB table ...
0
votes
0answers
131 views

javax.servlet.ServletException: failed to lazily initialize a collection, no session or session was closed

Hello I have a problem here. My project is not reloading an object with its @ManyToMany relationship. I have read in this forum and others a lot of doubts like mine and tried the suggestions, but I'm ...
3
votes
1answer
3k views

JSF 2.0, Spring 3.1 and Hibernate 4.0 integration

I am trying setup a web application with JSF 2.0 + Hibernate 4 and Spring 3.1. I am getting the following Exception when I test my Dao method. Exception in thread "main" ...
0
votes
1answer
1k views

Spring Security + JSF 2.0 + Primefaces + Hibernate configuration

I need to configure a project with Spring Security + JSF 2.0 + Primefaces + Hibernate. I'm using Netbeans 7.1.1. To put the required jars inside the /WEB-INF/lib folder and reference them from Project ...
0
votes
1answer
2k views

org.springframework.orm.hibernate4.HibernateSystemException: Unknown service requested [org.hibernate.stat.spi.StatisticsImplementor];

I am using hibernate4 and spring 3 and jsf2.0 for injection my using annotation i searched for this exception on Google but not find any appropriate solution here i have posted my logs , application ...

1 2 3