Are javax packages stable?

Is it true that the javax packages in Java are unstable and may be deprecated in future versions? In most of our projects we use swing packages which are included in javax .

+3


source to share


1 answer


It's nothing to worry about. There are Java classes that have been deprecated for the last 15 years, but they are still in the mainstream libraries for backward compatibility.

Even if the whole javax. * classes are deprecated, they will not disappear.



You might want to look at the Java 9 modular system .

+4


source







All Articles