赞
踩
报错如下:
nested exception is java.lang.MoClassDefFoundError: javax/xml/bind/annotation/XmlRootElement
解决方案:
引入缺失的jar包
<dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> <version>2.3.0</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.3.0</version> </dependency>
项目截图:
pom文件
application.yml
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。