-1
votes
0answers
22 views

ignorecase in criteria builder in JPA

Friends How can we do a ignorecase in the criteria builder if I have private final criteriaBuilder cb then i can only use cb.asc or cb.desc but not the ignorecase Please suggest
3
votes
2answers
151 views

Spring Data-JPA versus JPA: Whats the difference?

I am bit confused about difference between Spring Data-JPA and JPA. I know about JPA that it is a specification for persisting the Java Objects to relational database using popular ORM technology i.e. ...
0
votes
3answers
121 views

JPA Self Join using JoinTable

I have 1 entity call Item in which I want to be able to link parent items to children. to use a join table to create a parent/child relationship. I haven't been able to get any good documentation ...
0
votes
1answer
378 views

Design pattern for DAO and Service layers

I have question regarding DAO and Service layer pattern and I am using Spring 3 and Hibernate 4 for a small application. Small description regarding my application I have a small application where ...
1
vote
2answers
162 views

JPA/Hibernate primary key value sequence using current year

I am using Spring 3 and Hibernate 4 I have the following in Entity class @Id @Column(name = "PROJECT_NO") private String projectNumber; When I insert values into database table, is it ...
0
votes
1answer
111 views

EntityManager entityManager.persist(employee) doesn't save record in database table

I am using Spring 3 and Hibernate 4 I have the following in DAO class public void create(PersistEmployeee employee){ entityManager.persist(employee); } However nothing is saved ...
0
votes
1answer
123 views

Entity class for display and for CRUD operation

I am using Spring 3, Hibernate 4 with JSF 2.0 I have an Entity class like the following @Entity @Table(name = "V_EMPLOYEES") public class Employee { @Id @Column(name = ...
0
votes
2answers
156 views

Spring JPA Hibernate Vs Spring Hibernate

Performance point of view, which one should be the better option whether Spring JPA Hibernate or Spring Hibernate ?
1
vote
5answers
98 views

Hibernate to initialize object in a different transaction

I got the famous LazyInitializationException. I have an object User which is stored in the session. This object contains an other object Market which is lazy initialized. When I load the user in the ...
0
votes
0answers
243 views

Integrate Spring 3.0.6, JPA2, Hibernate Search 4.1.1, EhCache and statistics

Im developing a web application based on Spring and Hibernate Search with Lucene. They recommend to use Ehcache for caching. I tried to integrate the cache first into my tests(with TestNG) but with ...
2
votes
1answer
168 views

Spring JPA Hibernate valid configuration not working with JdbcTemplate?

I do have a working configuration in Spring for JPA with Hibernate provider: <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> ...
0
votes
2answers
1k views

No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0:

I am using springframework 3.2 with jboss server 7.1 . Trying to set up a simple spring app with jpa2(hibernate provider, mysql) and spring mvc. I use a simple DAO which i inject with autowired ...
1
vote
2answers
754 views

Weblogic deployment causes - Error creating bean with name 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor#0'

I am using Hibernate 4, Spring 3 , JSF 2.0 and Weblogic 10.3.6 When I start weblogic server and server starts successfully, however whenever it starts publishing application, I am getting the ...
0
votes
0answers
76 views

how to persist detached entity with spring roo

I am using spring roo in application. In spring MVC controller I have to create new object of other entity class. It is giving me exception dettached entity exception. My task is upload the excel ...
-1
votes
1answer
151 views

How to use Spring Managed Hibernate Session in Seam?

Most recent project I working where I trying to use Spring (3.1.1.RELEASE) Managed Hibernate Session into Seam (2.3.0.Final). In JBoss Seam Documentation where they explain How to use Seam Managed ...
0
votes
1answer
248 views

Spring + JPA in standalone application doesn't save data in database

I am using Spring 3.1.1 JPA 2 H2 Hibernate in standalone Java application. When I run the application, the transaction is executed and when I query the data, the data is retrieved. But the data is ...
0
votes
0answers
114 views

EJB 3.x or Spring: for Jersey-JPA-hibernate REST service [closed]

Which is easier when it comes to Jersey-JPA-hibernate applications: Spring or EJB 3.x? You can answer for both experienced users and for inexperienced users of Java. Basically, if time is at a ...
0
votes
1answer
291 views

error deploying a SpringData JPA2, hibernate cxf web service in jboss AS 7.2

I am developing a SpringData/JPA2 web service that uses Hibernate as the persistence provider. It uses the following frameworks: cxf=2.6.2 hibernate= 4.1.1.Final springframework=3.1.2.RELEASE ...
1
vote
1answer
662 views

JBoss AS7 + Oracle 11g + Spring 3.1 + JPA 2 - Multiple DSs, PUs, EMs, TMs

I'm building an application that needs CRUD operations on two separate databases. The transactions are applied to one database or the other (never both...so no need for JTA is my understanding). My ...
0
votes
0answers
94 views

Task related Entities Not Saved by Transaction with LocalTaskService - JBPM 5.4

Environment: jbpm v5.4.0.Final drools 5.5.0.Final spring v3.6.0.RELEASE H2 database v1.3.169 Hibernate EM v4.0.0.Final JPA v2 I am trying to implement a service layer to manage the processes & ...
7
votes
3answers
156 views

What's the trick to have my EventListeners trigger for my @ElementCollection properties?

I've got working my JPA events (postUpdate) and they are triggering correctly when I update a property on my entity except for the ones that are mapped as @ElementCollection. Is this a restriction? A ...
3
votes
3answers
622 views

Spring/JPA/Hibernate persist entity : Nothing happen

I'm trying to make an application with Spring 3, JPA 2 and Hibernate 3. I have a problem when y persist an entity : nothing happen ! Data are not inserted in database, and not query is executed. But ...
0
votes
2answers
589 views

integrating JPA and SpringIOc

Hi I write small application and trying connect jpa. in my spring configuration file I write this: <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> ...
0
votes
0answers
110 views

Spring JPA Hibernate - Table not found: MY_SEQ

My application is built using the following.. Spring 3.1, JPA 2, Hibernate 4.1, JBoss AS 7.1.0, Oracle 11g The application points to two databases. I use Spring's DefaultPersistenceUnitManager to ...
0
votes
1answer
80 views

Advice about spring transaction management redesign

I will try to describe the issue I'm trying to solve. I realized that an app that I've developed has a poorly implemented spring transaction management. I'm using declarative approach with ...
0
votes
1answer
206 views

Put Spring EntityManager in thread for async Servlet 3.0?

We're trying to enable Servlet's 3.0 "async-supported" in our Spring application: Added in web.xml (async-supported)true(/async-supported) for all servlets and filters. Rewrote the request handling ...
1
vote
2answers
651 views

Spring Transaction with JNDI and JPA transaction manager

I have defined DataSource in Context.xml(JNDI) and i would like to use with JPA transaction manager in Spring application Context.xml. I don't want to use JTA Transaction since i am using tomcat ...
0
votes
1answer
492 views

spring data jpa query to limit

I have query as such : @Query("select a from Ability a where a.eventLogic = ?1 AND a.abilitySetId = ?2 ORDER BY RAND() LIMIT ?3") BUt i get an error: Caused by: ...
0
votes
2answers
288 views

Best Audit trail mechanism for Spring + JPA + Hibernate application

I am using Spring 3.0 + JPA2 + Hibernate 4.1 with MySQL 5.5 I am looking to record 5 fields in my tables for audit trail purposes - lastModifiedByUser, lastModifiedTime, createdByUser, createdTime, ...
0
votes
3answers
309 views

Why do I get an unexpected EntityManagerFactory when using JPA within WebLogic?

I am trying to create a Spring MVC web app (Spring Framework 3.0.5). I am using IntelliJ IDEA 11.1.3 to deploy my app on a WebLogic Server (10.3.4). One of my web pages attempts to store some data ...
0
votes
2answers
734 views

JPA: Deleting detached instance

I get resultList from typedQuery object. I take first object from that list. eg. LoginAttempt loginAttempt = loginAttempts.get(0); When, I update this object and call ...
2
votes
1answer
340 views

Is there a way to give persistenceUnitName for Spring's LocalContainerEntityManagerFactoryBean without persistence.xml?

I have multiple datasources and multiple EntityManagerFactories to be defined in my spring context. If there is only on EntityManagerFactory we don't need to give persistenceUnitName. But to ...
0
votes
1answer
852 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 ...
2
votes
2answers
909 views

JPA 2.0 & Hibernate 4.0.1 & Spring 3.1.1 Compatibility

I am using Spring 3.1.1 in my application. I have integrated JPA and Hibernate 4.0.1 into it. My entityManagerFactory and few more beans are not getting instantiated. java.lang.NoSuchMethodError: ...
0
votes
2answers
219 views

Mule to JPA compatibility

I using Mule Studio version: 1.3.1 . buildDate: 201209061215 I am not able to get JPA end point. I also downloaded jpa-connector-1.0-20120925-2201.jar But I dont know to to integrate with mule ...
1
vote
0answers
53 views

restlet spring jpa

There seems to be some known issues with Jersey-Spring-JPA. Does anyone know of any fully implemented simple examples demonstrating Restlet-Spring-JPA? Preferebly using hibernate, glassfish, and ...
2
votes
2answers
2k views

Problems with hibernate

Hi I am trying to persist a simple entity. I dont get the exception if I remove the mapping tag from my hibernate.cfg.xml file. What could be wrong? <hibernate-configuration> ...
4
votes
0answers
1k views

Any updated Hibernate books? [closed]

I am currently reading Pro JPA2 which is good. I did a search on Amazon for Hibernate books but it looks like most of the books are quite old (Hibernate is almost 10 years old). I will also be using ...
1
vote
1answer
189 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
388 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
0answers
266 views

how to start and configure a spring base mvc webapplication with jpa, hibernate and scurity

I am trying to develop a spring based webapplication with spring mvc + security , JPA using Hibernate. Of cause i read the documentation, a book and other exsamples. But because i am really new to ...
1
vote
1answer
2k views

Class not eligible for getting processed by all BeanPostProcessors

I'm having a lot of trouble to set up a configuration of Spring + Spring Data JPA + QueryDSL + JPA 2.0 + Hibernate in Maven. I already solved a lot of problems, but this one is giving me headache =/. ...
0
votes
1answer
1k views

Container managed Transaction for JPA+Spring+Hibernate in Tomcat

I am trying to configure JOTM with JPA,Spring, hibernate and tomcat. I have configured somehow but neither it perform inserts nor updates, in other words, i am unable to perform commits after ...
0
votes
2answers
940 views

Can't get active session of an eclipselink's EntityManager with spring

I have a class that is responsible for execute stored procedure, it was working fine when I was using JTA... But cause I have some problems with redeploy, I removed JTA and I'm using local entity ...
0
votes
1answer
1k views

jpa2.0 + spring3.1 + hibernate4.1 Unable to build EntityManagerFactory --Solved

I have deal with it all day, but I didn't solve it. Help me, please. Do I lose some jars? I use Junit4 to test my code, and in the first line code: ApplicationContext context = new ...
0
votes
2answers
110 views

Auto insert default record when deploying Spring MVC App with Spring Security

I am looking for a way to auto insert a default admin account, using JPA, when my spring mvc application is deployed. My database is generated based on the Entities. I want to kick off something ...
0
votes
2answers
498 views

JPA: How to count child records without loading a lazy loaded set

I'm writing a J2EE/JPA/Spring 3 application, trying to stay pure JPA 2.0. I want to get a count of child objects without having to load them, as it's obviously an expensive operation. For example ...
0
votes
2answers
211 views

multiple database support for same JPA classs

We using MYSQL and Hibernate for our project. JPA is used to persist object in DB. We have Multiple class with similar code @Entity @Table(name = "users") class Users implement Serializable { ...
1
vote
2answers
638 views

Cannot change sequence name on Hibernate 3.6.10 with annotations (Oracle 10g)

I have a class annotated like this: @Entity @Table(name="MYENTITY") @SequenceGenerator(name="CODE_GEN", sequenceName="SEQ_NAME") public class MyEntity { @Id ...
1
vote
0answers
295 views

Hibernate returning lazy loaded collections with null session

(SORT OF SOLVED, SEE BELOW) Hibernate 4.1/Spring/JPA project. I'm using Spring & JPA annotations for transactions support, entity manager injection etc. What I'm seeing that within the same ...

1 2 3