10

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?

Abra
  • 19,142
  • 7
  • 29
  • 41
Moaz Basheer
  • 101
  • 1
  • 1
  • 8

2 Answers2

10

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>
Alfredo Tostón
  • 327
  • 2
  • 12
1

I removed the warning (with WADL disabled) in my Jersey Application like this:

Map<String, Object> properties = new HashMap<String, Object>();
properties.put("jersey.config.server.wadl.disableWadl", "true");
setProperties(properties);

Source: https://stackoverflow.com/a/43341597/1313699

Branislav Kuliha
  • 149
  • 2
  • 10