Changes between Version 3 and Version 4 of WikiStart


Ignore:
Timestamp:
07/03/2015 04:06:17 PM (11 years ago)
Author:
zhongweimin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v3 v4  
    1313 * 修复有些情况UTF-8编码报验证失败的bug; 
    1414 
    15 == 文档 == 
     15== 快速入门 == 
    1616 
    17  * [[http://rdtrac.pc.com.cn/pcwebmonitor/attachment/wiki/WikiStart/pc-web-monitor-1.1.zip|V1.1下载]] -- PC Web Monitor包括自身及所依赖的基础包及配置文件范例 
    18  * [wiki:document 使用手册] -- 微信支付客户端使用手册 
     17=== 第一步:引入微信支付客户端及其依赖包 === 
     18 {{{ 
     19   <dependency> 
     20       <groupId>com.tencent</groupId> 
     21       <artifactId>wxpay</artifactId> 
     22       <version>1.0</version> 
     23   </dependency> 
     24   <dependency> 
     25       <groupId>commons-logging</groupId> 
     26       <artifactId>commons-logging</artifactId> 
     27       <version>1.1.3</version> 
     28   </dependency> 
     29   <dependency> 
     30       <groupId>org.apache.httpcomponents</groupId> 
     31       <artifactId>fluent-hc</artifactId> 
     32       <version>4.3.5</version> 
     33   </dependency> 
     34   <dependency> 
     35       <groupId>org.apache.httpcomponents</groupId> 
     36       <artifactId>httpclient</artifactId> 
     37       <version>4.3.5</version> 
     38   </dependency> 
     39   <dependency> 
     40       <groupId>org.apache.httpcomponents</groupId> 
     41       <artifactId>httpclient-cache</artifactId> 
     42       <version>4.3.5</version> 
     43   </dependency> 
     44   <dependency> 
     45       <groupId>org.apache.httpcomponents</groupId> 
     46       <artifactId>httpcore</artifactId> 
     47       <version>4.3.2</version> 
     48   </dependency> 
     49   <dependency> 
     50       <groupId>org.apache.httpcomponents</groupId> 
     51       <artifactId>httpmime</artifactId> 
     52       <version>4.3.5</version> 
     53   </dependency> 
     54   <dependency> 
     55       <groupId>org.slf4j</groupId> 
     56       <artifactId>slf4j-simple</artifactId> 
     57       <version>1.7.7</version> 
     58       <scope>provided</scope> 
     59   </dependency> 
     60   <dependency> 
     61       <groupId>xmlpull</groupId> 
     62       <artifactId>xmlpull</artifactId> 
     63       <version>1.1.3.1</version> 
     64   </dependency> 
     65   <dependency> 
     66       <groupId>xpp3</groupId> 
     67       <artifactId>xpp3</artifactId> 
     68       <version>1.1.4c</version> 
     69   </dependency> 
     70   <dependency> 
     71       <groupId>com.thoughtworks.xstream</groupId> 
     72       <artifactId>xstream</artifactId> 
     73       <version>1.4.7</version> 
     74   </dependency> 
     75}}} 
     76 
     77=== 第二步:调用 === 
     78 
     79[[Image(components.jpg)]][[BR]]