I jumped the gun and opened a JIRA ticket for this problem, but I wanted to also run it by folks on the forum:
https://jira.springsource.org/browse/INT-2048
It appears that as the number of files...
Type: Posts; User: wrbriggs; Keyword(s):
I jumped the gun and opened a JIRA ticket for this problem, but I wanted to also run it by folks on the forum:
https://jira.springsource.org/browse/INT-2048
It appears that as the number of files...
Thanks, Oleg. I've opened INT-1951 against this.
I'm trying to use an HttpOutboundGateway to perform RESTful requests against an endpoint using URI substitution to extract the applicable REST URL values from a message payload. However, the...
Fair enough, at least there's a known fix. I usually like to have a deeper understanding of issues like this in case some other unexpected facet of it comes back to bite me later on; in this...
Thanks, Oleg. Upgrading the JVM fixes the issue, but I'd like to have a better understanding of the underlying JVM bug; I can't find any references to bugs with the isAssignableFrom method; I found a...
I am developing on MacOS, but the error is being observed on CentOS w/ Tomcat 6.0.20 and Sun JRE 1.6.0_18-b07.
3.0.5.release
I am using 2.0.3.RELEASE
I've written a simple SI flow that accepts requests via AMQP (Rabbit), and based on the contents of the message, generates a PDF report and delivers it to one of several potential endpoints (all...
Excellent point. For my current use case, transaction support is not required, but it sounds like exposing concurrent-consumers is important for those instances.
Mark, Oleg helped me understand the concept of channels and task executors performing many of the asynchronous tasks. With that in mind, I think that using a task executor to asynchronously pull...
Thank you for the quick reply, Oleg. I was just in the process of posting a response, as I came to the same conclusion and ended up with an almost identical dispatcher and executor. I can tell I'm...
Can anyone help me figure out what is required in order to configure the sftp outbound-channel-adapter to deliver files asynchronously? I have a simple set of channels configured that asynchronously...
Mark, I'm not certain what the etiquette or process is for this kind of thing, but I've attached the patch I threw together to be able to do this locally.
Thanks for the quick reply, Mark. I believe that would be sufficient, but I'm so early in this project that I wouldn't be willing to bet my firstborn on it. Regardless, it would certainly go a long...
Greetings,
As a proof-of-concept, I recently started using the base Spring AMQP module (RC1) to perform basic putting and fetching of serialized JSON messages to and from a RabbitMQ instance. For...
On either the JoinPoint or ProceedingJoinPoint parameter objects, you can use pjp.getSignature().getName().
Just a quick update: By setting -Dorg.aspectj.tracing.enabled=true and -Daj.weaving.verbose=true -Dorg.aspectj.weaver.showWeaveInfo=true in my JAVA_OPTS environment variable, I've received the...
I have an @AspectJ-style aspect that I have been using for logging in a Tomcat web application, using Spring AOP autoproxying to good effect. I have now run into a situation where I need to profile...
Everyone please ignore this; it turns out that because I was using a browser to invoke the endpoint, the browser was throttling the number of concurrent requests. Long story short, by being too lazy...
I noticed this behavior when opening multiple instances to the same endpoint - all the database queries ran in serial instead of concurrently. In order to verify that this was not a JPA or database...
I have used Spring for some simple, straightforward IoC in the past, but this is my first use of the MVC framework. I am running into a problem, and trying to figure out if this is a result of a...