The jakarta commons project is a great example of reusability. It’s a collection of utilities that can be used independently. The only problem is a lack of documentation. There are some books...
The following is a list of my freguently used java resources, I might keep this up to date. java.net javaworld javaboutique java.sun.com developer.com/java onjava.com http://planetjdk.org/ http://www.ibm.com/developerworks/java If anyone has more resources please...
I was looking for a good validation framework. Some options: jsVal wForms dexagogo I eventually used jsVal. The inline form initialisation is very easy in use. Regex are supported and some specific...
So I have a String that needs to be passed through as a javascript method argument. Problem is this String is user input and therefore can contain newlines so code can be...
I use firefox for developping webclient frontends. That’s why: I can change my css file on the fly and see what happens in browser with EditCSS Well the users will most likely...
When extending the SimpleFormController you might need some referenceData to be available after submitting the form. For example usefull when formView and successView are equal. This can be achieved by overriding the...
Ok I’m a programmer and graphical design is just not my thing. But that doesn’t mean my applications don’t need an appealing frontend. So let’s see what I do to present my...
While using the spring-framework (rocks!) I used the poi framework of jakarta to generate excel sheets. All went well in firefox but when I tried this with Internet Explorer the file was...
When using the java sap connector there are several things to keep in mind. Start by following the instructions in the given link ^. You need a reference in your project to...
Ok so writing BLOB fields in Oracle (with hibernate) could give you a bla bla length > 4000 bytes error. [todo: lookup exact error] First of all I’ll explain why. The BLOB...