rich

783
reputation
128 views

Registered User

name rich
member for 1 year
seen Nov 5 at 15:26
website
location
age
Dec
10
awarded  Notable Question
Oct
7
awarded  Yearling
Aug
31
awarded  Good Answer
Jul
30
comment Why this java link checker code does not compile?
Voted up for updating code with correct solution.
Jun
26
awarded  Good Answer
Jun
22
answered How can I exchange the first and last characters of a string in Java?
Jun
21
comment What’s the best way to implement web service for ajax autocomplete
Are you talking about a web service where you would be using something like SOAP? If so, I would avoid using a web service for this since it would add an extra layer of complexity and cause more latency. For the autocomplete I would send AJAX requests to the server and either query the database for suggestions or query from cached database results where possible.
Jun
21
comment What’s the best approach in auditing a big java/j2ee web application
You've really got your hands full. I wouldn't trust the existing unit tests without verifying them. You're definitely going to need some sort of regression tests to make sure the rewritten code still meets the functional requirements. The items on your list are a good start, especially the static analysis tools you mentioned.
Jun
21
comment how to manipulate list in java
You can let the database query remove the dups so you won't have to deal with them in your java code. Typically, anything you do in the database will likely be much more efficient.
Jun
21
answered Java Program, to monitor the website that i have made using J2EE..
Jun
21
awarded  Commentator
Jun
21
comment maven compile groovy
That's true but having bi-directional dependencies can lead to unnecessarily complex and less maintainable code. In the context of this question I agree that using GMaven is the right answer but I would still refactor the code to eliminate, or at least reduce the bi-directional relationships.
Jun
20
answered maven compile groovy
Jun
20
comment Old Code in comments
+1 Good checkin/commit comments will help others to understand why the code changes were made.
Jun
20
answered Sorting arrays in Java