5
votes
Is there a performance difference between a for loop and a for-each loop?
All these loops do the exact same, I just want to show these before throwing in my two cents.
First, the classic way of looping through List:
for(int i=0;i<strings.size() …
1
vote
How do I unit test jdbc code in java?
While the way to mock jdbc in your application is of course dependant on how you've implemented your actual jdbc transactions.
If you're using jdbc as is, I'd assume you have written yourse …
-2
votes
How to rewrite this block of code using a StringBuilder in Java?
I would NOT recommend using any regex for this, those are actually all painfully slow when you're doing simple operations. Instead I'd recommend you start with something like this
/ …
2
votes
Java Not Converting String to Long Object Properly
Trace through the program following the path of the String all the way to database and make unit tests for every single method on that path. And don't just take the shortest possible route here, ma …
0
votes
Is there any other strongly-integrated presentation layer tool other than JSF/JSP for Java EE?
The ideology behind beans is nowadays in any proper Java framework I know of. As rich mentioned, Spring is a good/great all-around business logic framework (check out its …
0
votes
Is it possible to display Swing components in a JSP?
Assuming you're familiar with Swing, you may want to introduce yourself to Apache Wicket which is very similar to the way you build web pages …
0
votes
how many classes per package? methods per class? lines per method?
(note: tl;dr available at the very bottom for my real opinion)
I'm not going to quote any big name and say that's the right answer because it's always very case dependant how you do all thi …
1
vote
Null object design pattern question
As far as I've understood it the idea is that the null object's value is as close to "nothing" as possible. That unfortunately means you have to define it yourself. As an example I personally use " …
3
votes
Java dynamic binding and method overriding
I think the key lies in the fact that the equals() method doesn't conform to standard: It takes in another Test object, not Object object and thus isn't overriding the equals() method. This means y …
6
votes
Most useful free Java libraries?
Apache Wicket, POJO-based web application framework. That description is short but it's beyond powerful, check the examples from the site and …
1
vote
Is Java suitable for “Web 2.0” applications?
Wonderful day, I get to post about Wicket again! :)
Java is very suitable for Web2.0 applications as long as you know how to use the t …
0
votes
Looking for a regular expression to identify hard coded magic numbers in source code
For Java I'd get FindBugs and then write a custom bug detector for it to do that checking you need. For more info on writing a custom b …
0
votes
How can I list the missing dates from an array of non-continuous dates in Java?
While the other answers already given look rather simple and enjoyable and hold some good ideas (I especially agree with the Iterator suggestion by Nerdfest), I thought I'd give this a shot anyway …
