Search:

Type: Posts; User: rainman; Keyword(s):

Search: Search took 0.02 seconds.

  1. STS not autoresolving Neo4j Entity annotations

    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...
  2. may be you could define a calendar with the list...

    may be you could define a calendar with the list of dates with included times and use an every minute crontrigger?
  3. Replies
    6
    Views
    5,794

    lhale: are you suggesting the use of the...

    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...
  4. Replies
    2
    Views
    855

    Alternately You Could register a...

    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...
  5. Replies
    6
    Views
    5,794

    the jobDataMap has been configured with your...

    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...
  6. Replies
    5
    Views
    3,461

    initializeAndStartScheduler method in...

    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 ;)
  7. Replies
    5
    Views
    3,461

    Was too tired to write an explanation yesterday....

    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...
  8. Replies
    5
    Views
    3,461

    you could intialize the class (which starts the...

    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...
  9. thanks Andy for the quick reply..It works...

    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?
  10. Trouble with @annotation :0 formal unbound in pointcut

    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;
    ........
  11. checking annotation properties at run time

    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...
  12. Replies
    1
    Views
    1,252

    1.0.0.m2 maven repository

    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...
  13. Replies
    16
    Views
    17,562

    thanks a million.

    thanks a million.
  14. Replies
    16
    Views
    17,562

    could you please post in your repository? because...

    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...
  15. Replies
    16
    Views
    17,562

    apologies for the typo.. had tried with ...

    apologies for the typo..
    had tried with

    <version>1.0.0.M5</version>
    but gettting the same error.
  16. Replies
    16
    Views
    17,562

    i am unable to download spring integration...

    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...
  17. Replies
    1
    Views
    1,189

    stopping the message bus

    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...
  18. Replies
    2
    Views
    934

    thanks for the reply. unfortunately i do not...

    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...
  19. hello vikas did u get it working ?

    hello vikas

    did u get it working ?
  20. Replies
    2
    Views
    934

    single queue and multiple client

    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...
  21. refactoring existing core java application

    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...
Results 1 to 21 of 22