0
votes
What’s the best way to build a string of delimited items in Java?
So basically something like this:
public static String appendWithDelimiter(String original, String addition, String delimiter) {
if (original.equals("")) {
return addition;
} e …
0
votes
Is it possible to kill a Java Virtual Machine from another Virtual Machine?
Not exactly process management, but you could start an rmi server in the java virtual machine you are launching, and bind a …
0
votes
Setting java locale settings
One way to control the locale settings is to set the java system properties user.language and user.region.
…
0
votes
3
votes
How to upgrade database schema built with an ORM tool?
LiquiBase is an interesting open source library for handling database refactorings (upgrades). I have not used it, but will definitely give it …
3
votes
Is it just me or are interfaces overused?
Basic rule of thumb: If you only have a single class implementing an interface, and if you can't think of another possible implementation of the interface, you don't need an interface, at least no …
1
vote
Can anyone recommend a simple Java web-app framework?
Check out WaveMaker for building a quick, simple webapp. They have a browser based drag-and-drop designer for Dojo/JavaScript widgets, and the backend is 100% Java.
…
0
votes
How do you resolve a circular dependency with an inner class?
(Not sure if this is what you are asking...)
At runtime, the inner class has an implicit reference to the instance of the outer class it belongs to. So whenever you pass the inner class in …
