What is the best way to port the java code of old jdk (1.5) to a newer version of Java (1.8) in order to provide its new features and improvements. We have a large Java code base jdk 5 and you want to upgrade to jdk 8.
There are many warnings and compiler hints (eg diamond operator, multicatch, unnecessary (un)boxingetc.), which will improve performance, readability, etc.
We use the NetBeans IDE. Are there any plugins we can use or are there migration scenarios?
source
share