赞
踩
在使用json的时候报这个错误 ,是包有冲突,解决方法如下:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.vaadin.external.google</groupId>
<artifactId>android-json</artifactId>
</exclusion>
</exclusions>
</dependency>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。