question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Implementation of JAXB-API has not been found on module path or classpath.

See original GitHub issue

When I start the application from the ‘complete’ directory and call the SOAP endpoint, I receice the following error message: Implementation of JAXB-API has not been found on module path or classpath. What’s going wrong?

Issue Analytics

  • State:open
  • Created 2 years ago
  • Reactions:2
  • Comments:8 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
clebermacieskicommented, Oct 2, 2021

Adding this dependecies to the pom.xml solve the problem…

<dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <scope>runtime</scope> </dependency>

2reactions
pengzjcommented, Sep 20, 2022

I resolved this issue by downgrade the version of jaxb-runtime.

implementation 'wsdl4j:wsdl4j'
jaxb("org.glassfish.jaxb:jaxb-xjc")
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.6'

build.gradle.txt

The whole gralde file is:

Read more comments on GitHub >

github_iconTop Results From Across the Web

javax.xml.bind.JAXBException Implementation of JAXB-API ...
JAXBException : Implementation of JAXB-API has not been found on module path or classpath. at javax.xml.bind.ContextFinder.
Read more >
Implementation of JAXB-API has not been found on module ...
This article shows how to solve the popular JAXB exception Implementation of JAXB-API has not been found on module path or classpath ....
Read more >
[Solved] JAXBException: Implementation of JAXB-API has not ...
[Solved] JAXBException: Implementation of JAXB-API has not been found on module path or classpath. ... JAXBException is the root exception class ...
Read more >
Implementation of JAXB-API has not been found on ... - GitHub
I am getting the following error: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath. - ...
Read more >
Implementation of JAXB-API has not been found ... - YouTrack
Plugin is working fine but after execution agent is reporting error : Implementation of JAXB-API has not been found on module path or...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found