Archive for April, 2007
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
My StAX based Message Shredder
So far I have worked a lot with Java and XML but mostly with the DOM parser. For my current project I had to split a big XML document into smaller 'messages' and put these small messages on a queue. Well, if you have the same experience as I do with DOM then you know [...]
Posted: April 13th, 2007 under General, XML/XMLDB.
Comments: none
JBoss Messaging installation and configuration
Last week I installed JBoss Messaging 1.2.0.GA on our JBoss 4.0.5.GA instance. In this blog I will state the steps we performed to install the extension and configure it for our application. I am not sure this will be THE way to do it, but this is how it worked for us :-). Please note [...]
Posted: April 10th, 2007 under General, J2EE Application Servers, JBoss AS.
Comments: 1
