Search Results

1
vote
5answers
200 views

What criteria should be used to judge and compare Java applications?

I have to support a Java Programming Challenge for students and we have to come up with some technical criteria to judge their java application. What is the best way to compare and judge an applica …
1
vote
2answers
481 views

md5 hash for password string in GWT/GWT-Ext?

Hi everyone, I am currently trying to modify an existing GWT-Ext application, that is using plain text passwords in its MySql database. My plan was to use md5 hashes, as the existin …
0
votes
4answers
854 views

Disable Axis log4j logging in jboss

Hi, I have small application that is uploading pictures to another website via webservice. My current problem is, that Axis is logging the whole xml message (including the binary data of th …
0
votes

Get Methods: One vs Many

If you rewrite the question you can end up asking: "SELECT name FROM ... " "SELECT SSN FROM ... " "SELECT email FROM ... " vs. "SELECT * FROM ..." And I guess the an …
0
votes

Disable Axis log4j logging in jboss

Ok, after trying to find a better solution, the only real way was to check the old legacy code and turn all System.out calls into real logging statements (much better anyway), and then simply filte …
3
votes

Generating PDF’S dynamically in servlets?

iText and JasperReports a …
28
votes

What’s Alternative to Singleton

The Google Testing blog has a series of entries about avoiding Singleton (in order to create testable code). Maybe this can help you: …