springboot 集成 ueditor 编译时报错:org.json.JSONObject 找不到类的错误

解决方法,在 pom 里添加依赖:

<dependency>
 <groupId>org.json</groupId>
 <artifactId>json</artifactId> 
</dependency> 

<dependency>
 <groupId>commons-io</groupId>
 <artifactId>commons-io</artifactId>
 <version>2.4</version> 
</dependency>

猜你喜欢

转载自blog.csdn.net/beguile/article/details/88625653