Java

  - Generics type erasure (i.e. no reified generics)
  - Inability to catch multiple exceptions (of different types) in a single catch block
  - Lack of destructors (finalize() is a very poor substitute)
  - No support for closures or treating functions as data (anonymous inner classes are a very verbose substitute)
  - Checked exceptions in general, or more specifically, making unrecoverable exceptions checked (e.g. SQLException)
  - No language-level support for literal collections
  - No type-inference when constructors of generic classes are called, i.e. the type parameter(s) must be repeated on both sides of the '='