It's the combo of the jms:inbound-channel-adapter and the LoggingHandler. If you remove the LoggingHandler then the code works fine as well.
If you use the LoggingHandler and the...
Type: Posts; User: tonyjoe; Keyword(s):
It's the combo of the jms:inbound-channel-adapter and the LoggingHandler. If you remove the LoggingHandler then the code works fine as well.
If you use the LoggingHandler and the...
It appears that the LoggingHandler in concert with jms:inbound-channel-adapter swallows exceptions.
This thread is to provide more info for JIRA INT-1763 because I can format the output nicer.
...
It appears that the LoggingHandler in concert with jms:inbound-channel-adapter swallows exceptions.
This thread is to provide more info for JIRA INT-1763 because I can format the output nicer.
...
Mark,
For this JIRA [https://jira.springsource.org/browse/INT-1586] you added these attributes to the message-driven-channel-adapter:
receiveTimeout
idleConsumerLimit
recovery-interval
Can...
Please see these JIRAs:
INT-1762
INT-1763
Is there a way to extract messages from a JMS queue both using multiple threads AND performing writes to the Spring Integration MessageStore using JDBC "batch-mode"?
My use-case is I need to...
16.1 Inbound Channel Adapter section has this:
Maybe should be this:
One other thing to note.
I initially found the "NULL" error because the UPDATED_DATE column was being defaulted to "NOT NULL", so the SQL would fail when attempting to insert. The additional...
I had some issues with the "org.springframework.integration.jdbc/schema-sybase.sql" file for Sybase 12.5.
The file contains this:
CREATE TABLE INT_MESSAGE (
MESSAGE_ID CHAR(36) NOT NULL...
Thanks for the quick response Oleg.
I was aware that you could enrich headers without using a chain - actually that's what I originally had and when I faced issues I thought perhaps wrapping it...
I'm creating a "chain" where I add a few headers to a message. In doing so I'm facing an issue where I can't seem to get an error to appear when the HeaderEnricher throws an exception.
Version...
Dave,
Similar to the 2.0.0 release, is there a "spring-batch-*-with-dependencies.zip" for 2.0.2? Or have you done away with having dependency versions of the zip and as-such will only have...
I've created a JIRA for exposing the resource attribute via a public getter:
http://jira.springframework.org/browse/BATCH-290
I've opened a JIRA for the FieldSet interface...
http://jira.springframework.org/browse/BATCH-289
Dave,
Can you also perhaps make FieldSet be an interface rather than a class (and make the current FieldSet be "FieldSetImpl")? Since your docs say this:
this would be more consistent with the...
The code you suggest:
is what I was initially trying to avoid - that being that I didn't want to explicitly have to create a type of Resource object, I wanted the container to create a suitable...
Done --> http://jira.springframework.org/browse/BATCH-269
Yes, I discovered the ResourceEditor right after posting this message. Is it possible to expose the SimpleFlatFileInputSource.resource property through a public getter? The...
In addition to allowing users to pass in a Resource to the SimpleFlatFileInputSource
also allow users to pass in a resource location. Currently the simpleTaskletJob.xml contains this:
...
...
I'm currently evaluating Spring Batch 1.0.m3. In that release you have a sample class org.springframework.batch.sample.mapping.PassThroughFieldSetMapper. I believe this class is very useful and...
Robert and Lucas,
Thanks for all the info - that's very helpful. I'll start to try out your suggestions a bit tonight and will try to open that Jira ticket for the optional/required fields in the...
I've started evaluating Spring Batch and it looks promising. I've worked on several projects that do a fair amount of file batch processing. From my experience, there are a some features that the...
I'm using the new testing classes in Spring 2.5 with Java 1.5.
First, let me give some praise to Sam Brannen and the Spring Source team for all the rework in the testing classes - it's really well...
Can you please post the Spring version you were working with that you posted a workaround for?
While the "classpath:" resource now appears to work, the "classpath*:" does not work, even in snapshot spring-framework-2.5-rc2-20071109-296. Unfortunately a lot of tests we have in Spring 2.0 rely...