javax.xml.bind.JAXBException Implementation of JAXB-API has not been found on module path or classpa

jhipster启动报错:
javax.xml.bind.JAXBException Implementation of JAXB-API has not been found on module path or classpath [duplicate]
的解决办法

增加以下依赖
Gradle:

compile('javax.xml.bind:jaxb-api:2.3.0')
compile('javax.activation:activation:1.1')
compile('org.glassfish.jaxb:jaxb-runtime:2.3.0')

Pom:



    javax.xml.bind
    jaxb-api
    2.3.0-b170201.1204




    javax.activation
    activation
    1.1




    org.glassfish.jaxb
    jaxb-runtime
    2.3.0-b170127.1453

你可能感兴趣的:(jhipster)