最近在做基于SpringBoot+Frammark+X-admin2.2的开发时,涉及到json的处理,涉及到了net.sf.json.JSONObject相关的依赖包。Maven中的引用如下所示:
[图片上传失败...(image-504d81-1589910935286)]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <!-- JSONObject对象依赖的jar包 开始 --> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> <version>1.9.3</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.2.1</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>net.sf.ezmorph</groupId> <artifactId>ezmorph</artifactId> <version>1.0.6</version> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.2.3</version> <classifier>jdk15</classifier> <!-- jdk版本 --> </dependency> <!-- Json依赖架包下载结束 --> |
相关阅读:
Controller注解@CrossOrigin,解决跨域问题
Spring Boot集成X-admin2.2时,使用layui的字体图标时无法正常显示或乱码的解决办法
#Maven #SpringBoot #Frammark #X-admin2.2