hailspring & Andreas,
Thanks ... switched to "org.springframework.jdbc.datasource.DriverManagerDataSource" and it works.
Looks like the short-coming is in dbcp
Thanks ..:p
Type: Posts; User: james nuzzo; Keyword(s):
hailspring & Andreas,
Thanks ... switched to "org.springframework.jdbc.datasource.DriverManagerDataSource" and it works.
Looks like the short-coming is in dbcp
Thanks ..:p
So I am missing nothing ... Oracle RAC connection String does not work in Spring Batch?
Have a SB application that uses Placeholder Properties file crm.properties
# Placeholders crm.*
# for ORACLE 10g:
crm.jdbc.driver=oracle.jdbc.driver.OracleDriver...
We use JAXB artifacts in our SB integrations.
Re: Dependencies include see attached image:
Here's the code fragments form our application-context.xml
<step id="step2"...
Dave many thanks for walking me through this.
Version seems to be the culprit, as my friends say ... always look in JIRA first when you have a problem.
In any case I change to 2.0.1.RELEASE...
Dave again thanks for your persistence. org.springframework.batch.core.step set to DEBUG
2009-07-08 10:23:43,890 DEBUG [org.springframework.batch.core.step.AbstractStep] - <Executing: id=0>...
Dave, again thanks for the reply and information.
Re:
Actually I don't think value is getting resolved from 'batchlex'. I've addressed the Type issue by setStepContext as Int and in my...
Dave thanks for the reply. Here some follow on info to your questions.
I'm setting the stepContext in my ValidateWriter Step. I believe I'm doing it correctly. I've changed it to putInt...
I've been beating myself silly with this problem for the last 48 hours I have to believe I'm missing something very simple. So here's more information.
Application-Context.xml fragments...
...
The following is what Don and the rest of the team finally worked out. Just thought we'd post the answer to our own question :D.
First we took the required dependent JAR files from our Maven...
Back again with another newbie question.
I've a multi steps job:
One step reads in from a database a value in need to use in queries in later steps.
Step 1.
read AccountTeamFilter...
Spot on. Many thanks. My getInstallbase was:
select DISTINCT FAMILY, USER_SORT_CHAR_5, CONCAT(FAMILY, USER_SORT_CHAR_5) as KEYC from briouser.sfdc_interface
it needed to be:
My Ibatis query result set returns 150 rows which get repeatedly written to my output file; this is not desired outcome. I only want one "copy" of the 150 rows written to the target output file; as...
A newbie question I fear. Just getting into Spring Batch 2.0.
I've been working through the samples and building my own as POC for a project that I have due soon.
Anyway, getting a handle on...