If lowering the isolation level would help?
Type: Posts; User: patb23@gmail.com; Keyword(s):
If lowering the isolation level would help?
Hi,
It happened again. I could not find a solution for this yet.
Thanks
Please note that the problem is not reproducible - When I resubmitted the job with the same set of files, it worked most of the times.
Thanks
I am getting this error only with few input files. I searched the forum and checked that the reader is in step scope, as suggested in the below thread. ...
It happened few times but not at the start up. We have configured 12 jobs but when the exception start happening, only a restart seems to be of help. Please note that the Job params are unique. Are...
I see from forum posting that this is as a result of running two jobs simultaneously
http://forum.springsource.org/showthread.php?93613-Spring-Batch-admin-gui-with-Oracle-11G
Edit: Checked the...
PLEASE ignore this question.
The table uses a trigger to populate the ID field and in our QA environment, the Trigger was not attached, resulting in the below error.
Aside: Is there a way for...
I found the problem with my code. When I removed the annotation, it worked.
// The Item Writer's write method
@Transactional(propagation = Propagation.REQUIRES_NEW)
Note: The...
I did that as well. was trying all possible Transactionmanagers in an attempt to make it work :-)
This is the configuration I have now.
<bean id="jpaTransactionManager"...
One more update. I turned on the logs for Hibernate and I am pasting the logs from the local instance (working). The highlighted text are missing in the App server instance.
select...
I am using JPA Repository and Batch API. It works fine in STS (Unit Test). When I run it in Websphere, the data is not persisted. Please find the relevant code and configuration details.
Note: I am...
Please ignore this post as this was because of the way I grouped the dependency in the Parent POM.
My issue is same as the one discussed in
https://jira.springsource.org/browse/DATAJPA-146. I went by the suggestion to use the build snapshot for JPA but I still get the error.
The parent POM has...
I want to control the number of jobs executed in parallel. I referred http://static.springsource.org/spring-batch-admin/reference/reference.xhtml and in the context file (override folder),
I have...
Please ignore my question. I got it working by the unidirectional example in...
The relationship is defined as follows:
Owner table - Cache
//bi-directional many-to-one association to Vendor
@OneToMany(mappedBy="cache",cascade = CascadeType.ALL)
private List<Vendor>...
Please ignore my question. The issue got resolved when I used the latest milestone Spring-Data-JPA.
Thanks
Hi,
I am trying the Spring-Data-JPA the very first time. Using eclipselink. I am getting the '[Assertion failed] - this argument is required;' erro when SimpleJPARepository is initialized.
My...
Wanted to update that with the latest RC1 release, this works perfectly fine. Thanks
I have a Read/Write Tasklet. In the writer, I am calling a Webservice that can fail. I am treating this as a Skippable Error condition. This is done because, we want to make use of the...
Hi,
I am contacting a service that requires exchange of certificates. I am getting handshale_failure error when using the XwsSecurityInterceptor.
I see the following entries when SSL Debug is...
Thanks. I am using the latest - M4 release.
Yes. It does. Attached the class in the zip file.
Blue ones - I am trying to find a record matching that query. red is also same - here I want to get the data which has the same Address - do not...
Please find the exception trace:
java.lang.IllegalArgumentException: can't serialize class com.pcg.ds.wscache.domain.Address
at org.bson.BSONEncoder._putObjectField(BSONEncoder.java:234)
at...
I am new to this project.
My persistence object has following attributes firstName, lastName and address where address is embedded.
when I try to run the following query, I get 'address not...