Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WARNING: JAXBContext implementation could not be found. WADL feature is disabled

Tags:

java

eclipse

WARNING: JAXBContext implementation could not be found. WADL feature is disabled

How can I resolve this warning?
Is there a way to enable this WADL feature?

like image 393
Moaz Basheer Avatar asked Dec 25 '20 01:12

Moaz Basheer


1 Answers

I recomend to you this thread.

I've solved this simply adding this dependency in my pom.xml:

<dependency>
    <groupId>org.glassfish.jaxb</groupId>
    <artifactId>jaxb-runtime</artifactId>
    <version>2.3.3</version>
</dependency>
like image 196
Alfredo Tostón Avatar answered Nov 14 '22 10:11

Alfredo Tostón