vote up 6 vote down star
2

Similar to this question...

What are the worst practices you actually found in Java code?

Mine are:

  • using instance variables in servlets (it's not just bad practice but bug, actually)
  • using Collection implementations like HashMap, and not using the appropriate interfaces
  • using seemingly cryptic class names like SmsMaker (SmsFactory) or CommEnvironment (CommunicationContext)
flag
1  
Simply using instance variables in servlets is not a bug or bad practice. Altering the variables after initialization of a servlet may be a bug (it depends on what those variables represent), and is bad practice, but just using instance variables in servlets is not bad practice. – MetroidFan2002 Oct 26 '08 at 18:22
Should be community wiki – finnw Aug 3 at 7:02

22 Answers

vote up 43 vote down check

I had to maintain java code, where most of the Exception handling was like:

catch( Exception e ) {}
link|flag
1  
People who "throw away" exceptions should be punished! – TM Oct 26 '08 at 18:27
3  
People also do: catch(Exception e){ // will not happen } :) – jb Oct 26 '08 at 20:08
5  
Unfortunately, my current project has done worse: catch(Throwable th) { logger.log("something went wrong"); } – Alan Oct 27 '08 at 1:23
1  
Hey that's pretty common in C# code as well. – Daud Oct 28 '08 at 6:09
4  
I admit, while using Oracle's JDBC stuff, that I've written catch (SQLException ex) { /* What could possible be thrown here? */ } when closing a connection. – R. Bemrose Oct 29 '08 at 18:44
show 6 more comments
vote up 4 vote down

Overkill abstraction of object oriented design.

Same answer on a similar thread (applies to all languages which permit object oriented design).

link|flag
vote up 12 vote down

Not related strictly to Java, but calling an expensive function over and over instead of storing the result, when you know it won't change. Example:

if (expensiveFunction() > aVar)
    aVar = expensiveFunction();
for (int i=0; i < expensiveFunction(); ++i)
    System.out.println(expensiveFunction());
link|flag
It depends what you mean by "expensive". Martin Fowler, in his book on re-factoring, actually recommends writing code like this as it is easier to refactor. – oxbow_lakes Oct 26 '08 at 17:17
2  
how is it easier then using variable with value that was returned by that function? i.e. one line vs X lines... – dusoft Aug 2 at 16:19
2  
You have to be totally sure that the result of the method is not changing. If the method changes and therefor the result changes more often then thought while writing the depending method your code breaks without you knowing why. If you want to cache do it in the called expensive method. There you know if the result is changing. – Janusz Aug 2 at 18:29
vote up 1 vote down

Similar to yours, but taken a step further:

Use of class (static) variables when a request scoped variable was the correct thing to do in a Struts action. :O

This was actually deployed in production for a few months, and no one ever noticed a thing until I was reviewing the code one day.

link|flag
1  
We had a problem like that lead to a situation where only one user could press the 'Submit' button at a time without getting a stack trace. Luckily the users were internal and eventually somebody on the dev team asked the professional services guys why the kept yelling over the cube wall "Fire in the hole!" – David Moles Aug 4 at 9:00
vote up 16 vote down

I hate it when people create interfaces just for hanging a set of constants on:

public interface InterfaceAntiPattern {
  boolean BAD_IDEA = true;
  int THIS_SUCKS = 1;
}

—Interfaces are for specifying behavioural contracts, not a convenience mechanism for including constants.

link|flag
I guess you like static imports in Java 6? – Thorbjørn Ravn Andersen Aug 2 at 16:15
1  
Static imports were introduced in Java 5 and I don't see what they have to do with this point. – John Topley Aug 2 at 16:41
Allows you to import e.g. Math.cos and refer to it just as cos. See java.sun.com/j2se/1.5.0/… – Thorbjørn Ravn Andersen Aug 2 at 18:18
2  
Math is a concrete class not an interface, so Math.PI is not an example of this anti-pattern. – John Topley Aug 3 at 11:11
2  
What static imports have to do with this point is that they allow you the convenience of just saying if (BAD_IDEA) rather than if (ConstantsClassPattern.BAD_IDEA), without having to extend InterfaceAntiPattern. – David Moles Aug 4 at 8:57
show 2 more comments
vote up 7 vote down

Subclassing when you're not supposed to, e.g. instead of using composition, aggregation, etc.

Edit: This is a special case of the hammer.

link|flag
vote up 5 vote down

Abstracting functionality out into a library class which will never be re-used as it's so specific to the original problem being solved. Hence ending up with a gazillion library classes which no-one will ever use and which completely obscure the two useful utilities you actually do have (i.e. CollectionUtils and IOUtils).

...pauses for breath...

link|flag
vote up 5 vote down

Our intern used static modifier to store currently logged user in Seam application.

 class Identity{
    ...
    public static User user; 
    ...
 }

 class foo{

    void bar(){
       someEntity.setCreator(Identity.user); 
    }

 }

Of course it worked when he tested it :)

link|flag
Interns are there to learn, so I guess it is forgivable. Hopefully he won't do it again! – TM Oct 26 '08 at 18:26
3  
I have done this! My only saving grace is that I was a student, and while the people grading my work didn't catch my mistake, I did figure it out on my next project. – Athena Oct 27 '08 at 1:05
vote up 9 vote down

The worst Java practice that encompasses almost all others: Global mutable state.

link|flag
vote up 7 vote down

Ridiculous OO mania with class hierachies 10+ levels deep.

This is where names like DefaultConcreteMutableAbstractWhizzBangImpl come from. Just try debugging that kind of code - you'll be whizzing up and down the class tree for hours.

link|flag
vote up 1 vote down

@madlep Exactly! Parts of the Java community really goes overboard with extreme abstractions and crazily deep class hierarchies. Steve Yegge had a good blog post about it a couple of years back: Execution in the Kingdom of Nouns.

link|flag
vote up 5 vote down
if{
 if{
  if{
   if{
    if{
     if{
      if{
       if{
         ....
link|flag
3  
}}} else { ... – Carlos Heuberger Aug 3 at 15:03
2  
On a related note, using ifs instead of if-elses: if (i==1) {} if (i==2) {} instead of if (i==1) {} else if (i==2) {} – fahdshariff Oct 1 at 10:35
vote up 2 vote down

I once had to investigate a web application where ALL state was kept in the web page sent to the client, and no state in the web server.

Scales well though :)

link|flag
AAAAARRRRRGGGGG – Isaac Waller Aug 2 at 18:31
For bonus points, also send user credentials to the browser. – finnw Aug 3 at 6:58
Hey, it's RESTful! – David Moles Aug 4 at 8:58
vote up 7 vote down

Six really bad examples;

  • instead of error reporting, just System.exit without warning. e.g. if(properties.size()>10000) System.exit(0); buried deep in a library.
  • using string constants as locks. e.g. synchronized("one") { }
  • locking on a mutable field. e.g. synchronized(object) { object = ...; }
  • initializing static fields in the constructor.
  • Triggering an exception just to get a stack trace. e.g. try { Integer i = null; i.intValue(); } catch(NullPointerException e) { e.printStackTrace(); }
  • Pointless object creation e.g. new Integer(text).intValue() or worse new Integer(0).getClass()
link|flag
1  
Oh my brain.... – 280Z28 Aug 3 at 6:44
+1 for comedy value even though I've been lucky enough never to see any of these in production code – finnw Aug 3 at 7:00
I still don't know what is wrong with having 10000 properties. ;) – Peter Lawrey Aug 5 at 18:35
Oh wow, string constants as locks is kind of neat... :) – Lamah Oct 1 at 13:31
vote up 1 vote down

My favorite sorting algorithm, courtesy of the gray beard brigade:

List needsToBeSorted = new List ();
...blah blah blah...

Set sorted = new TreeSet ();
for (int i = 0; i < needsToBeSorted; i++)
  sorted.add (needsToBeSorted.get (i));

needsToBeSorted.clear ();
for (Iterator i = sorted.iterator (); i.hasNext ();)
  needsToBeSorted.add (i.next ());

Admittedly it worked but eventually I prevailed upon him that perhaps Collections.sort would be a lot easier.

link|flag
vote up 5 vote down

Once I encountered 'singleton' exception:

class Singletons {
    public static final MyException myException = new MyException();
}

class Test {
    public void doSomething() throws MyException {
        throw Singletons.myException;
    }
}

Same instance of exception was thrown each time ... with exact same stacktrace, which had nothing to do with real code flow :-(

link|flag
1  
This came up for consideration recently in a discussion I was part of. (And I grimaced.) :o – 280Z28 Aug 3 at 6:50
vote up 0 vote down

An API that requires the caller to do:

Foobar f = new Foobar(foobar_id);
f = f.retrieve();

Any of the following would have been better:

Foobar f = Foobar.retrieve(foobar_id);

or

Foobar f = new Foobar(foobar_id); // implicit retrieve

or

Foobar f = new Foobar();
f.retrieve(foobar_id); // but not f = ...
link|flag
vote up 1 vote down

Not closing database connections, file handles etc in a finally{}

link|flag
vote up 3 vote down

Creating acessors and mutators for all private variables, without stopping to think, sometimes automatically.

Encapsulation was invented for a reason.

link|flag
vote up 0 vote down

A mistake made by junior programmers: unnecessarily using member variables instead of local variables.

A Java EE example:

Starting threads in servlets or EJBs (for example to start asynchronous processing tasks).

This breaks the scalability of your Java EE app. You're not supposed to mess with threading in Java EE components, because the app server is supposed to manage that for you.

We refactored this by having the servlet put a message on a JMS queue and writing a message-driven bean to handle the asynchronous processing task.

link|flag
vote up 0 vote down

Excesive focuse on re-using objects that leads to static things everywhere. (Said re-using can be very helpfull in some situation).

Java has GC build-in, if you need an object, create a new one.

link|flag
vote up 0 vote down

Defining the logic using exceptions where a for-loop or any form of loop would suffice.

Example:

while(i < MAX_VALUE)
{
   try
   {
      while(true)
      {
         array[j] = //some operation on the array;
         j++;  

      }
   }
   catch(Exception e)
   {
      j = 0;
   }
}

Serious, I know the guy who wrote this code. I reviewed it and corrected the code :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.