Hi, all I am trying to figure out the best workflow for working with Maven and Grails.
I want to be able to use dependency management, so I took a sample grails project and did
create-pom and...
Type: Posts; User: nedry; Keyword(s):
Hi, all I am trying to figure out the best workflow for working with Maven and Grails.
I want to be able to use dependency management, so I took a sample grails project and did
create-pom and...
Well I knew it would be something silly, I totally glossed over that this was asynchronous and didn't have anything in my code to wait for a response so my Junit was ending immediately. Adding a...
I added the CorrelationData object as suggested, what am I supposed to use in the constructor for the id?
I tried the following without better luck.
public void runWithSpring(){
...
Here is my connection factory. I think I did it right.
I am trying to do a similar configuration with the Spring RabbitTemplate as shown below with the standard client library without much luck
channel.addConfirmListener(new ConfirmListener() {
...
I am trying to follow the advice of Craig Wells, in the Spring in Action book in order to create a Springless DAO to utilize hibernate aka hibernate contextual sessions.
I started with the...
Thanks, I think I have got what I need now.
How do you change the policy via spring? I think I want to use ThreadPoolExecutor.DiscardOldestPolicy
Based on the spring config below, what happens when queueCapacity is exceeded? Will the thread trying to place something into the queue be blocked or will an exception be thrown? I am guessing that...
I am having some issues understanding how exactly the TaskExecuter works.
I am trying to follow the example in 25.2.2 of the docs.
It would seem that every time the printMessage method is...