1.JSON字符串转换为JSON对象 var obj = JSON.parse(str); 2.JSON对象转化为JSON字符串 var str = JSON.stringify(obj); 对此有一个小小的使用技巧可以实现对象的深度克隆 var s = JSON.stringify( oldObj ); var newObj = JSON.parse( s );…
参考文档: http://books.sonatype.com/nexus-book/reference/index.html E:\e\nexus\nexus-2.12.0-01\conf\nexus.properties 配置文件: # Sonatype Nexus# ==============# This is the most basic configuration of Nexus. # Jetty sectionapplication-port=8081application-ho…