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 [...]
Posted: June 14th, 2008 under General, JBoss AS, Maven2, SOA/Web Services, Soap UI, Spring Framework, Spring WS.
Comments: 3
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 [...]
Posted: July 25th, 2007 under General, Spring Framework.
Comments: none
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 [...]
Posted: June 28th, 2007 under General, JBoss AS, Spring Framework.
Comments: none
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 {
[...]
Posted: April 26th, 2007 under General, Spring Framework.
Comments: 8
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 [...]
Posted: April 25th, 2007 under General, Hibernate, Spring Framework.
Comments: none
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 [...]
Posted: March 28th, 2007 under General, Spring Framework.
Comments: none
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 [...]
Posted: March 12th, 2007 under General, Spring Framework.
Comments: 4
