對象引用jar包對應的Maven地址

JSONObject
JSONObject.fromObject

<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>  

DefaultHttpClient
HttpGet
HttpResponse
HttpEntity
EntityUtils
HttpPost
StringEntity
Menu
ParseException

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpcore</artifactId>
    <version>4.4.10</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.6</version>
</dependency>

HttpServletRequest

<dependency>
	<groupId>javax.servlet</groupId>
	<artifactId>servlet-api</artifactId>
	<version>2.5</version>
	<scope>provided</scope>
</dependency>

dom4j
DocumentException
SAXReader
Document
Element

<dependency>
	<groupId>dom4j</groupId>
	<artifactId>dom4j</artifactId>
	<version>1.6.1</version>
</dependency>

XStream

<dependency>
	<groupId>com.thoughtworks.xstream</groupId>
	<artifactId>xstream</artifactId>
	<version>1.4.9</version>
</dependency>

BeansException

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-beans</artifactId>
    <version>4.2.5.RELEASE</version>
</dependency>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章