STS version:2.7.0.RELEASE
Grails version:1.3.7
neo4jplugin:0.3.1
on installing the plugin for neo4j ( on command line) and setting up for an eclipse view in STS, the grails plugin does not...
Type: Posts; User: rainman; Keyword(s):
STS version:2.7.0.RELEASE
Grails version:1.3.7
neo4jplugin:0.3.1
on installing the plugin for neo4j ( on command line) and setting up for an eclipse view in STS, the grails plugin does not...
may be you could define a calendar with the list of dates with included times and use an every minute crontrigger?
lhale:
are you suggesting the use of the applicationContext inside the job?
well that is one way..
IMHO if you would really like to get to the root of the issue the problem with the previous...
Alternately You Could register a GlobalJobListener with the scheduler.
In the jobWasExecuted method you could check for the JobExecutionException as being not null and fire up an email.
The email...
the jobDataMap has been configured with your jobLauncher and registry which are not serializable. When you look at a job persistent store Quartz sort of serializes the elements of the jobDataMap and...
initializeAndStartScheduler method in SomeInitializingService could be done in a largely better way as would have rightly noticed .The explanations were just to demonstrate the usage ;)
Was too tired to write an explanation yesterday.
(Would prefer approach 2 and is intuitive from approach 1)
Here goes the example for approach 1
<?xml version="1.0" encoding="UTF-8"?>
<beans...
you could intialize the class (which starts the quartz scheduler) with the desired services autowired.
add these services to the schedulers' context (scheduler.setContext().put(...)) before...
thanks Andy for the quick reply..It works perfectly
Apologies for the haste of the posting (late hours i guess)
Do you think it is a good idea to keep validation as an aspect?
Im trying to introduce pre validation inside my service classes with aspects.
For this i have created an annotation for validation
package com.example.services;
........
I have created an annotation which goes like the one below.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface AnAnnotation{
public String value();
}
as is...
can u please point me to a maven repository housing the 1.0.0.m2 milestone release.? the current s3 repositories dont seem to have the m2 releases and are only available from m5.The old repositories...
thanks a million.
could you please post in your repository? because i can browse ,find,download the integration.adapter jars and integration jars without problems using a normal web browser.
It is only through maven...
apologies for the typo..
had tried with
<version>1.0.0.M5</version>
but gettting the same error.
i am unable to download spring integration milestone releases from s3browse using maven. Have a checksum failure on the download of any milestone release. The jars and poms downloaded are 5k each and...
we are using spring integration in our project were we connect the channels with Jms message queues on weblogic after lookup through jndi.
we have a request and response simple channel configured...
thanks for the reply.
unfortunately i do not have any property inside the JmsMessage properties to distinguish the messages. I have no control on the message producer since they are a third party...
hello vikas
did u get it working ?
we have two jms clients subscribing to the same jms queue. Can the clients select and dequeue the messages based on the message.
something like
client 1 will dequeue only when messages are of...
Existing Application Description
we already have a core java application used for performing certain business processes for user inputs
at the capture terminal. The current flow looking like...