3
votes
Returning from a finally block in Java
Adding control structures and returns to finally{} blocks are just another example of "just because you can" abuses which are scattered throughout virtually all development languages. Jason was ri …
4
votes
Java Compilation - Is there a way to tell the compiler to ignore parts of my code?
The suggestions about using custom class loaders and dynamically commented code are a bit incredulous when it comes to maintenance and the preservation of the sanity of whichever poor soul picks up …
2
votes
Java logger that automatically determines caller’s class name
You could of course just use Log4J with the appropriate pattern layout:
For example, for the class name "org.apache.xyz.SomeClass", the pattern %C{1} will output "SomeClass". …
3
votes
Extending Java Web Applications with plugins
Take a look at Java Portlets - http://developers.sun.com/portalserver/reference/techart/jsr168/ - in a …
3
votes
Update more than one row atomically
There's probably a whole heap of technologies and concepts that come into play here, and things start to get fairly sticky when you start considering multi-threaded / multi request applications. …
8
votes
3
votes
Converting Symbols, Accent Letters to English Alphabet.
Attempting to "convert them all" is the wrong approach to the problem.
Firstly, you need to understand the limitations of what you are trying to do. As others have pointed out, diacritic …
