Hi,
If, for example, i have a Main Flow, which calls a Sub Flow.
If an exception gets encountered in the sub flow logic, and it is not handled there;
Will i be able to make any...
Type: Posts; User: prabhu.pravin; Keyword(s):
Hi,
If, for example, i have a Main Flow, which calls a Sub Flow.
If an exception gets encountered in the sub flow logic, and it is not handled there;
Will i be able to make any...
Hi,
I have a requirement where i need to do the following:
Show View
In case i receive a Security Exception (due to restrictions on some views); Throw a Custom Exception
Handle my...
Hi,
The job is configured as below (cannot post the exact code here)
<batch:job id="job1" job-repository="jobRepository" restartable="true">
<batch:step id="step1">
Hi,
I am writing 10 items, in chunks of 3 each.
Configuration:
Oracle 11g enterprise
Transaction propogation=REQUIRED
Skip all exceptions (java.lang.exception)
Reader is...
Hi,
I have a simple batch program (reader/writer) with a chunk size of 5.
My input table has 20 numbers (1,2,3...,20)
I am copying these number to output table (chunk size of 5).
My...
Hi all,
I wanted to call a Web Service in my Reader. This web service returns list of data which i will return one-by-one to the writer.
i will be manually calling the web service using stubs...
Hi,
I am invoking 2 web services from a client application.
Web Service 1 uses a data source 1 & Web Service 2 uses Data source 2.
I first perform a select + delete operation on Data...
Hi,
I have Implemented ItemWriter and am using jdbcTemplate to update database in write(list<T>..) method.
My question is,
i get a list of objects in the write() method, and i am having...
Hi,
I have defined a Static org.hibernate.Session variable in my Bean class.
Class A {
private static Session session;