web-dev-qa-db-fra.com

java.lang.classnotfoundException: com.sun.org.apache.xml.internal.resolver.CatalogManager Java 11

J'ai une application JavaFX je migrée de Java 8 À Java 11, Il a été une transition approximative, mais la majeure partie de l'application fonctionne, à l'exception du web service Cela continue de me donner l'exception:

Exception in thread "main" Java.lang.RuntimeException: Exception in Application start method
            at com.Sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.Java:900)
            at com.Sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.Java:195)
            at Java.base/Java.lang.Thread.run(Thread.Java:834)
    Caused by: Java.lang.NoClassDefFoundError: com/Sun/org/Apache/xml/internal/resolver/CatalogManager
            at com.Sun.xml.ws.util.xml.XmlUtil.createDefaultCatalogResolver(XmlUtil.Java:296)
            at com.Sun.xml.ws.client.WSServiceDelegate.createCatalogResolver(WSServiceDelegate.Java:348)
            at com.Sun.xml.ws.client.WSServiceDelegate.parseWSDL(WSServiceDelegate.Java:334)
            at com.Sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.Java:292)
            at com.Sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.Java:201)
            at com.Sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.Java:182)
            at com.Sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.Java:178)
            at com.Sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.Java:89)
            at javax.xml.ws.Service.<init>(Service.Java:82)
            at e.bop.asycuda.WSMrrtService.<init>(WSMrrtService.Java:39)
            at e.bop.main.EBop.start(EBop.Java:56)
            at com.Sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.Java:846)
            at com.Sun.javafx.application.PlatformImpl.lambda$runAndWait$12(PlatformImpl.Java:455)
            at com.Sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.Java:428)
            at Java.base/Java.security.AccessController.doPrivileged(Native Method)
            at com.Sun.javafx.application.PlatformImpl.lambda$runLater$11(PlatformImpl.Java:427)
            at com.Sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.Java:96)
            at com.Sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
            at com.Sun.glass.ui.gtk.GtkApplication.lambda$runLoop$11(GtkApplication.Java:277)
            ... 1 more
    Caused by: Java.lang.ClassNotFoundException: com.Sun.org.Apache.xml.internal.resolver.CatalogManager
            at Java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.Java:583)
            at Java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.Java:178)
            at Java.base/Java.lang.ClassLoader.loadClass(ClassLoader.Java:521)
            ... 20 more

J'ai regardé une question similaire comme - ceci mais en vain. J'ai la dépendance suivante dans mon fichier pom

  <dependency>
        <groupId>com.Sun.xml.ws</groupId>
        <artifactId>jaxws-rt</artifactId>
        <version>2.3.1</version>
        <type>pom</type>
    </dependency>
9
Astonio

J'ai eu les mêmes problèmes d'exception avec un projet après avoir passé de Java 8 à Java 11.

Ce sont les paramètres du projet:

  • Le projet est un client qui accède à un serveur à l'aide de SOAP Web Services
  • Les services Web du serveur sont générés via https://cxf.apache.org/ en utilisant WSDL2JAVA. L'exception se produit en appelant les sources générées
  • Le projet sera déployé sur une version autonome à l'aide du Maven-Assembly-Plugin

Solution:

La seule chose (et réellement la plus facile) qui a fonctionné pour moi était d'activer la version multiple dans le fichier POM:

    <build>
    <plugins>
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-Assembly-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <configuration>
                        <archive>
                            <manifest>
                                <mainClass>
                                    de.mycompany.testclient.CmdLineRunner
                                </mainClass>
                            </manifest>
                            <manifestEntries>
                                <!-- This fixed the CatalogManager exception problem -->
                                <Multi-Release>true</Multi-Release>
                            </manifestEntries>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

Je n'ai ajouté aucune dépendance liée à com.sun.xml.ws

0
Christof Nasahl

Avec Java 11 Nous avons dû ajouter ceci

<dependency>
    <groupId>javax.annotation</groupId>
    <artifactId>javax.annotation-api</artifactId>
    <version>1.3.2</version>
</dependency>

<dependency>
    <groupId>javax.xml.bind</groupId>
    <artifactId>jaxb-api</artifactId>
    <version>2.3.1</version>
</dependency>

<dependency>
    <groupId>javax.xml.ws</groupId>
    <artifactId>jaxws-api</artifactId>
    <version>2.3.1</version>
</dependency>

<dependency>
    <groupId>javax.jws</groupId>
    <artifactId>javax.jws-api</artifactId>
    <version>1.1</version>
</dependency>

<dependency>
    <groupId>com.Sun.xml.bind</groupId>
    <artifactId>jaxb-xjc</artifactId>
    <version>2.3.2</version>
</dependency>

<dependency>
    <groupId>org.glassfish.jaxb</groupId>
    <artifactId>jaxb-runtime</artifactId>
    <version>2.3.2</version>
</dependency>

<dependency>
    <groupId>com.Sun.xml.ws</groupId>
    <artifactId>jaxws-rt</artifactId>
    <version>2.3.2</version>
</dependency>

<dependency>
    <groupId>com.Sun.istack</groupId>
    <artifactId>istack-commons-runtime</artifactId>
    <version>3.0.8</version>
</dependency>

<dependency>
    <groupId>com.Sun.xml.stream.buffer</groupId>
    <artifactId>streambuffer</artifactId>
    <version>1.5.7</version>
</dependency>

<dependency>
    <groupId>com.Sun.xml.ws</groupId>
    <artifactId>policy</artifactId>
    <version>2.7.6</version>
</dependency>
0
cabaji99