-1
votes
0answers
14 views

BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext

all the related posts are not helped me.... please check my configuration file is correct or not.... My application is based on struts2 integrated spring3 and jpa eclipselink for the database ...
0
votes
1answer
21 views

How to solve org.hibernate.StaleObjectStateException when copying data from one database to another?

I am trying to copy data from one database to another. All is working fine, until one of the rows in the source database is modified (stack trace below) . Adding new rows to destination database works ...
0
votes
1answer
21 views

Does JPA allow to create the same table structures but different name of tables?

I have a simple JPA (Spring data Jpa) use case for simple forums. This project is done by Spring MVC, Spring Data Jpa with hibernate as a jpa vendor and it consists of forum/forum_comment pojo ...
0
votes
0answers
22 views

Spring Data JPA @Query doesn't find mapped class

I am using Spring Data JPA and trying to run query like this: @Query(value="select i.content from Item i where i.itemOrder = :order") List<String> findContentByItemOrder(@Param("order")Integer ...
2
votes
2answers
26 views

Persist list of Entities with <int-jpa:outbound-channel-adapter

I may be missing something here but I cannot seem to find any docs about persisting a List of Entities using Spring Integration JPA Outbound Channel Adapter. I have an extremely simple scenario that ...
0
votes
0answers
22 views

Multiples Project Persist Spring Data

I'm Having a Weird problem with Spring Data. I Have 2 different projects, witch one have your schema on postgres. on the first project i can do the CRUD in any entity and everything work's fine. ...
0
votes
3answers
58 views

Spring JPA @Transactional Atomic

Using Hibernate JPA and Spring @Transactional (with Atomikos JTA implementation) I have the following Entities in my system: Order Orderline (holds a reference to the order) Customer In a Service ...
0
votes
0answers
31 views

Automaticly insert and update ID of oneToMany entities (Hibernate/JPA with spring transactions)

I having some trouble with spring transactions and oneToMany entities. I have a central entity which is "Candidat" I want to persist and update fields/relations on cascade (and orphans removal for ...
0
votes
0answers
50 views

Why doesn't JPA/Spring creates sequences on Oracle DB

I'm using JPA to implement my entity framework backed by Hibernate as an ORM to work with Oracle DB. Everything is glued up (Autowired) with Spring. To generate the DB schema I've added this to the ...
1
vote
0answers
29 views

Composite Unique Index created on each deploy

I'm using Spring 3.2 with Hibernate 4.2.1.Final and MySql 5.5. Each time I reload my webapp hibernate creates a new Composite Unique Index of my entities. For example in my entity I have: ...
0
votes
1answer
19 views

Spring JPA @Query where clause with 'like' and 'or'

I have the following query: @Query("select c from Category c where ( (lower(c.name) like '%' || lower(:searchText) || '%') or (lower(c.description) like '%' || lower(:searchText)) || '%')") My ...
0
votes
0answers
19 views

Spring JPA loads all associated properties despite marking them as FetchType.LAZY in entity class

I am using JPA + Hibernate. The following is the entity class: @Entity @Table(name = "test_details") public class TestDetailsEntity implements Serializable { private static final long ...
0
votes
1answer
20 views

setFirstResult and setMaxResult doesn't work well with Order By

What could cause the CriteriaQuery orderBy method stop working? Here are the implementations: OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager()); ...
-1
votes
0answers
46 views
+50

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
0
votes
1answer
24 views

Spring JPA 2.0 Repository / Factory not working

I'm trying to implement a custom java Spring JPA repository, as described in the Spring documentation. It seems that my spring config insists on creating the repositories in the standard way, instead ...
0
votes
2answers
21 views

Spring Roo @RooJpaActiveRecord parameterized the JPA table catalog

I need a why to change the JPA catalog element in my java class? We have many database environments which we need to be able to deploy our application too. Example: In your dev environment we have a ...
1
vote
3answers
53 views

JPA Entities not scanned during unit test

I have a mature java application using Hibernate/JPA that is working just fine. We are trying to add some unit/integration tests. I am doing this using Spring's TestContext framework, my test class ...
0
votes
1answer
47 views

JPA + Spring: UnexpectedRollbackException when Transaction is REQUIRED, REQUIRES_NEW or NESTED

I'm doing my first project with Spring, JPA, and GlassFish 3.1 and I'm having some troubles. I've been looking for a solution for a week, but I have found nothing. I have an Entity (called Role), a ...
0
votes
0answers
28 views

Spring data mongo crossstore does not work in the newest Spring artifacts

I am using Spring 3.2.2, Spring data mongo 1.2.1(and mongo 2.4.3 64bit on Windows), Spring data JPA 1.3.2 (Hibernate 4.1.9.Final). All the codes are hosted on my github.com. ...
1
vote
1answer
61 views

Spring JUnit JPA Transaction not rolling back

I am trying to test my DAO that uses JPA EntityManager to fetch and update entities. I have marked my unit test as Transactional and set the defaultRollback property to false. However, I don't see my ...
1
vote
1answer
66 views

JPA - Container Managed Persistence doesn't persist entity -JTA

I m trying to integrate Spring and JSF i stuck on persisting object. I dont want to handle transaction (begin - commit etc) After some googling i could find an answer give what i need in this link ...
0
votes
1answer
33 views

@OrderBy annotation cannot order by sub relation

If There is a relation like this: entity A (one) ---> (many) entity B (one)---->(one) entity C And current JPA entity A has following relation definition: @OneToMany(mappedBy = "A", fetch = ...
0
votes
1answer
57 views

Delete rows in a batch using JPA EntityManager

I was trying to delete rows in a batch using JPA EntityManager. I got the following exception. java.lang.IllegalStateException: Not allowed to create transaction on shared EntityManager - use Spring ...
0
votes
0answers
11 views

Throw TraversableResolver.isReachable() only on one of the three databases, other two are fine

I run the same application on local oracle database and testing db A, no problem when persisting a series of entities, but when comes to db B, when try to persist one of the entities, the server gives ...
0
votes
0answers
18 views

Order processing with Spring+hibernate+JPA+isolationlevel+propagation

My issue is with Order processing with multiple people fetching same order. GOAL Fetch first available open order which is not assigned to any user and assign to one user. When running the same in ...
1
vote
1answer
31 views

spring data like functionality for JEE6

I have experience building applications on the Spring Framework primarily. I was wondering if there was anything similar to the Spring Data API (to support a Data Access Layer) in the JEE6 space? ...
0
votes
1answer
55 views

Bean injection inside a JPA @Entity

Is it possible to inject beans to a JPA @Entity using Spring's dependency injection? I attempted to @Autowire ServletContext but, while the server did start successfully, I received a ...
0
votes
1answer
40 views

What is the solution to this strange behavior of JPA Spring EntityManager

I'm developing a webapp with JPA, Spring MVC under Maven and Hibernate Framework, I have this list method: @Transactional public List<Person> list() throws DatabaseException { ...
0
votes
1answer
91 views

ERROR: HHH000299: Could not complete schema update java.lang.NullPointerException

I have a web application in the following environment. JPA 2.0 Spring 3.2.2 MySQL 5.6.11 Hibernate 4.2.0 CR1 Apache Tomcat 7.0.35 My configurations until now in the application-context.xml file ...
0
votes
1answer
43 views

JPA: exception obtaining an entity that references another

I am writing a simple application using Spring and JPA. I have 2 entities: User and Role, with a relation of N..1. Whenever I try to get any of this entities from the database, I get an exception ...
0
votes
3answers
96 views

java.lang.ClassNotFoundException: org.hibernate.ejb.HibernatePersistence

I'm trying to deploy an application in the following environment. JPA 2.0 Spring 3.2.2 MySQL 5.6.11 My configurations until now in the application-context.xml file are as under. <?xml ...
-1
votes
1answer
34 views

What is a solution develop correctly this Spring and JPA webapp example?

I have a Controller for my webapp developed with Spring mvc under Maven 3. In this controller I've @Autowired PersonDAO dbController I want to use JPA 2.0 to manage persistance so I rewrited my ...
3
votes
5answers
192 views

EntityManager from LocalContainerEntityManagerFactoryBean does not persist entities into the database

The problem is that the EntityManager injected with @PersistenceContext in a Spring managed bean does not persist the entities to the database. I have tried using @Transactional on the AddDao bean, ...
0
votes
1answer
25 views

What constraint could I put so JPADAO should always insert first entry with id =0 and not with id =1

I have created some Tables using JPA with Spring support. I would like to know if there is any mechanism by which we could control the insertion process of JPA. Question more elaborate as follows :- ...
2
votes
1answer
96 views

Spring fails to inject entity manager factory

I writing tests for my DAO classes using JPA, with Hibernate as JPA provider, and Spring 3.2. I am not able to inject the entity manager correctly, I get a NullPointerException when trying to access ...
0
votes
2answers
49 views

Spring data @Transactional not roll back

I develops my first application using Spring MVC and Spring JPA. I get a problem when using @Transactional annotation. I annotate one of my service methods with @Transactional and I throw exception in ...
0
votes
3answers
63 views

Spring Security + JPA user schema

As per Spring documentation if you need to manage spring security via database you should have some standard schema of tables. for example. create table users( username varchar(256) not null ...
0
votes
0answers
70 views

spring example with wrong datasource configuration

I try to run the example project of jboss-springmvc-webapp, but I fail to configure the data source. the error is: JBAS014775: New missing/unsatisfied dependencies: service ...
0
votes
2answers
40 views

Hibernate envers exception

I am trying to use JBoss envers (4.2.0.FINAL) annotations on my project but I failed due to an Enum auditing problem, My entity code is @Entity @Audited @DiscriminatorValue("CREDIT") ...
0
votes
0answers
47 views

How to configure OpenJpa with H2 database in Spring MVC

I've a Maven Spring MVC-webapp project and I want to use OpenJpa to manage my data. I'm completely new to Jpa and I found no examples in internet on how to configure OpenJpa; I understood that I've to ...
0
votes
1answer
93 views

Spring LocalContainerEntityManagerFactoryBean scanForPackages and Hibernate package-level type definitions

In Spring 3.1 and higher the LocalContainerEntityManagerFactoryBean is supposed to be able to configure the JPA EntityManagerFactory without a persistence.xml. The configuration is included in the ...
2
votes
1answer
31 views

Persist OneToOne relation with SpringData JPA

I have the next two entities with a OneToOne relation between them: @Entity @Table(name = "tasks") public class Task { @OneToOne(mappedBy = "task", cascade = CascadeType.PERSIST) private ...
0
votes
1answer
38 views

How do I get a specific child entity from the parent agg in JPA where there could be many children

I have a 2 part question: I have a root agg that has children entities and there could be a large number of them. I was looking for an efficient way to get a specific one. Right now the only way is ...
0
votes
2answers
35 views

Does it worth to put entity under @Transactional service layer if just for searching?

In Spring MVC, I put most JPA entity (from domain layer) manipulation under service layer and for most CRUD actions, I have to make that service method or class @Transactional. But, just thinking, ...
0
votes
0answers
20 views

Managing Foreign key mapped as Foreign key i representing in JPA entity classes

I am having following Tables : Company having PK as Comp_ID User PK as User_ID & Comp_ID named AS Org_Id as a FK referencing to Company Topic which is having PK as Topic_ID and FK as User_ID ...
1
vote
1answer
83 views

Spring Data JPA causes EntityExistsException with cascading save

I have a Challenge class, which has a many to one relationship with a User class. It is uni-directional, so it looks like this: @Entity @Table(name="UserTable") public class User { @Id private ...
0
votes
0answers
88 views

Hibernate exception “Batch update returned unexpected row count from update” when do saving

I know there are many same questions in stackflow,while it can't adjust my case,i really doubt my issue is caused by hibernate inheritance mapping,anyway,please see detail stuff: 1.Booking Entity ...
0
votes
2answers
47 views

Audit DB record changes with Spring Data

I need to audit all changes on some of my DB tables. For example, for a given Employee I need to know all addresses and the day that this field was modified. Actually I'm using Spring Data, Hibernate ...
3
votes
4answers
103 views

Can't get OpenEntityManagerInViewFilter to work in JBoss 6.1

I am trying to add open-session-in-view behavior to an existing pure JPA application. Using Spring in the service-tier is not an option. I would like to wrap the view in Spring's ...
1
vote
1answer
45 views

Spring OpenentityManagerInViewFilter alternative

Beacause of the issues mentioned in : Why not to use Spring's OpenEntityManagerInViewFilter and http://heapdump.wordpress.com/2010/04/04/should-i-use-open-session-in-view/ I'd like to use an ...

1 2 3 4 5 22