When I type IntHolder, it prompts me to Cannot resolve symbol IntHolder.My JDK is 14.And I can't find it in the JDK documentation.Will some classes or others disappear with the JDK version update?
IntHolder
The CORBA modules containing the org.omg.CORBA.IntHolder were removed with JDK 11. https://openjdk.java.net/jeps/320
org.omg.CORBA.IntHolder
you can still add the content as dependency: https://mvnrepository.com/artifact/org.glassfish.corba/glassfish-corba-orb https://github.com/javaee/glassfish-corba
Generally this issue should not be there , as java don't really remove the classes it just deprecates it. May be you should try re-installing JAVA .
It was deprecated with JDK 11
The CORBA modules containing the
org.omg.CORBA.IntHolder
were removed with JDK 11. https://openjdk.java.net/jeps/320you can still add the content as dependency: https://mvnrepository.com/artifact/org.glassfish.corba/glassfish-corba-orb https://github.com/javaee/glassfish-corba