Application I am working on is desktop application based on healthcare. It is fully tested on java 1.6 now we want to implement it on java 1.7 so how much effort we need to test and implement this application on java 1.7. Is anything special that we need to keep in mind to deploy on this version?
Application I am working on is desktop application based on healthcare. It is fully
Share
Java 7 should be fully backward compatible with your Java 6 code.
The first step is to compile the source under JDK 7. If that succeeds, you should be good to go.
You should check the JDK 7 release notes to see about new features that you may want to leverage in the future.