Main menu:

 

PALMA IT

Locations of visitors to this page

Site search

  • Categories

  • Archive

    November 2008
    M T W T F S S
    « Oct    
     12
    3456789
    10111213141516
    17181920212223
    24252627282930

    Archive for 'Spring Framework'

    Using StAX with Spring WS

    As I have posted before we are using XFire to implement our web service. Unfortunately, we are running into some serious issues with the framework, so we decided to look after another implementation. Since XFire is no longer supported by the community (or at least at a very low profile) and ‘replaced’ by CXF, we [...]

    Weird Quartz scheduler behaviour

    As I posted before here I am using Quartz scheduler to schedule some batch jobs. It seemed to work fine but now while we were testing our application it appeared Quartz was showing some weird behaviour. I have scheduled 3 jobs, each with it’s own trigger in one scheduler. However, 2 of the jobs are [...]

    Configuring durable messages with SpringFramework

    In our project we have a webservice that receives a message, processes it and sends a response back. Very common for a webservice I think
    Now there was an extra request: log all messages in a database so we could get management info out of it, like in which hour of the day are we [...]

    Scheduling with Spring and Quartz

    Just a small post about something I noticed in Quartz. I wanted to offer the user a screen with functionality so they could (re)schedule a batch job which then would do all kinds of batch stuf. To schedule the job in my application I used the following Java code:
    PLAIN TEXT
    JAVA:

    public void resetScheduleJob() throws CustomSystemException {

     

      [...]

    Failure trying catching an UncategorizedSQLException

    To store information in our PostgreSQL database we use Spring and Hibernate as I mentioned earlier in my posts. Some of our tables in the database also have GIS information with them. That's why we are also using PostGIS extension on our database. This GIS information (Geometry) is also reflected in the Hibernate objects we [...]

    JMS Spring disadvantages

    In my previous post I was rather enthousiastic about the Spring JMS library. However, that was before we did run some performance tests. It seemed that with using JMS Spring our code was at least 10 x slower then before! Although the code may be easier to maintain, this performance issue was unacceptable. This was [...]

    Using Spring JMS

    Last week I discovered a piece of code in our project that didn't use Spring yet. It was the piece of code that used JMS to access some JBoss queues. Since we did use Spring everywhere in our code where it was possible, I decided to rewrite this piece so it also uses Spring (and [...]