I need to migrate my swing application from Java 1.7 to 1.8. Application only works for Window environment.
Did this Java upgrade especially for swing API cause any feature stop working or any of its UI components behaviour change?
I need to migrate my swing application from Java 1.7 to 1.8. Application only works for Window environment.
Did this Java upgrade especially for swing API cause any feature stop working or any of its UI components behaviour change?
There was an interesting bug report on StackOverflow recently. But seems that the situation described in that question is very specific. We successfully migrated our quite huge Java 7 Swing application to Java 8. There were only several minor things to fix not related to Swing. In particular some complex generic parameters may work in Java 7, but produce a compilation error in Java 8. After several months of using Java 8 no Swing-related problems were noticed in our application.