1
vote
Some Tomcat webapps not opening
Hum...
What about logs? Some information that could help?
Kind Regards
…
3
votes
How do I expose data in a JSON format through a web service using Java?
To me, the best Java <-> JSON parser is XStream (yes, I'm really talking about json, not about xml). XStream already d …
2
votes
Mocking Static Blocks in Java
You could write your test code in Groovy and easily mock the static method using metaprogramming.
Math.metaClass.'static'.max = { int a, int b ->
a + b
}
Math.max 1, 2
…
2
votes
access to auto increment identity field after SQL insert in java
ResultSet keys = statement.getGeneratedKeys();
Later, just iterate over ResultSet.
Kind Regards
…
1
vote
Is there any way to enable the mousewheel (for scrolling) in Java apps?
Take a look Pushing Pixels blog: http://www.pushing-pixels.org/index.php?s=mouse+wheel
Kind Regards
…
2
votes
Should domain objects and simple JavaBeans be unit tested?
How can you securely refactoring untested code? What will happen when your bean pojo changes if you haven't tests? Are you creating a …
2
votes
How to build interface for such enum
Enums already have a valueOf (your find method) method. "toStri …
1
vote
How do you handle developer individual files under version control?
We just keep a standard between developers. Everyone uses the same directories, database names and users, so we don't need to worry about those things.
Kind Regards
…
1
vote
Ant Junit tests are running much slower via ant than via IDE - what to look at?
Maybe you are seeing that because Eclipse do incremental compiling and Ant don't. Can you confirm that this time is wasted only in the test target?
Kind Regards
…
0
votes
How to launch from Eclipse in Low priority under Windows?
A better alternative is configure the amount of memory that Eclipse will use: http://www.eclipsezone.com/eclipse/forum …
4
votes
Multiple correct results with Hamcrest (is there a or-matcher?)
assertThat (result, anyOf(equalTo(1), equalTo(2), equalTo(3)))
From Hamcrest tutorial:
…
2
votes
suggestion on remoting (rpc, rmi) for jse client-server app?
Apache Mina. Not true rpc but easy to use and surely a option to consider.
Kind Regards
…
2
votes
How do I use ResourceBundle to avoid hardcoded config paths in Java apps?
You don't need a ResourceBundle. A simple Properties object can do the job. Just use the classloader to get an inputstream for you properties file and use it to load de values. If you need to handl …
3
votes
Java Application Installers
If you are looking for an Open Source solution, take a look here:
http://java-source.net/open-source/installer-gener …
7
votes
Java core API anti-Patterns. What is wrong?
java.util.Calendar is a example of bad API design. Try to calculate the difference in days between two calendars and you will see that code is not readable/clear/succinct. APIs to handle date …
