【例子介绍】BRIDGE新版商户直连DEMO_JAVA版本 含ptf和demo例子
【相关图片】
【源码结构】
.
├── jf-DemoOfBridgeForJAVA
│ ├── WebContent
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── lib
│ │ │ │ ├── TrustPayClient-V3.1.4.jar
│ │ │ │ └── jsse.jar
│ │ │ └── web.xml
│ │ ├── confirmTrace.jsp
│ │ ├── confirmTraceResult.jsp
│ │ ├── contract
│ │ │ ├── agentError.jsp
│ │ │ ├── agentPay.jsp
│ │ │ ├── agentPayQuery.jsp
│ │ │ ├── agentPayQueryResult.jsp
│ │ │ ├── agentPayResult.jsp
│ │ │ ├── agentQueryByCodEpay.jsp
│ │ │ ├── agentQueryByCodEpayResult.jsp
│ │ │ ├── agentSignQuery.jsp
│ │ │ ├── agentSignQueryResult.jsp
│ │ │ ├── agentSignReq.jsp
│ │ │ ├── agentSignSubmit.jsp
│ │ │ ├── agentSignSubmitResult.jsp
│ │ │ ├── agentUnSign.jsp
│ │ │ └── agentUnSignResult.jsp
│ │ ├── downloadTrace.jsp
│ │ ├── downloadTraceFail.jsp
│ │ ├── header.jsp
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── jquery.min.js
│ │ │ └── moment.js
│ │ ├── refundTrace.jsp
│ │ └── refundTraceResult.jsp
│ ├── pom.xml
│ └── src
│ └── main
│ ├── java
│ │ └── merchant
│ │ ├── beans
│ │ │ ├── Bill.java
│ │ │ ├── ChargeBillRequest.java
│ │ │ ├── ChargeBillResponse.java
│ │ │ ├── CheckBillResponse.java
│ │ │ ├── ConfirmTraceRequest.java
│ │ │ ├── ConfirmTraceResponse.java
│ │ │ ├── DownloadTraceRequest.java
│ │ │ ├── DownloadTraceResponse.java
│ │ │ ├── EpayType.java
│ │ │ ├── FeeDetail.java
│ │ │ ├── PackageInfo.java
│ │ │ ├── PayBillRequest.java
│ │ │ ├── PayBillResponse.java
│ │ │ ├── QueryBillRequest.java
│ │ │ ├── QueryBillResponse.java
│ │ │ ├── RefundTraceRequest.java
│ │ │ ├── RefundTraceResponse.java
│ │ │ ├── TransTrace.java
│ │ │ └── contract
│ │ │ ├── AgentPayQueryRequest.java
│ │ │ ├── AgentPayQueryResponse.java
│ │ │ ├── AgentPayRequest.java
│ │ │ ├── AgentPayResponse.java
│ │ │ ├── AgentQueryByCodEpayRequest.java
│ │ │ ├── AgentQueryByCodEpayResponse.java
│ │ │ ├── AgentSignNotifyRequest.java
│ │ │ ├── AgentSignNotifyResponse.java
│ │ │ ├── AgentSignQueryRequest.java
│ │ │ ├── AgentSignQueryResponse.java
│ │ │ ├── AgentSignReqRequest.java
│ │ │ ├── AgentSignReqResponse.java
│ │ │ ├── AgentSignResendRequest.java
│ │ │ ├── AgentSignResendResponse.java
│ │ │ ├── AgentSignSubmitRequest.java
│ │ │ ├── AgentSignSubmitResponse.java
│ │ │ ├── AgentUnSignRequest.java
│ │ │ └── AgentUnSignResponse.java
│ │ ├── controllers
│ │ │ ├── receive
│ │ │ │ ├── ChargeBillController.java
│ │ │ │ ├── QueryBillController.java
│ │ │ │ ├── QueryBillControllerOfOtherRules.java
│ │ │ │ ├── QueryBillReturnCodeController.java
│ │ │ │ └── contract
│ │ │ │ ├── AgentSignNotifyController.java
│ │ │ │ └── AgentUnSignNotifyController.java
│ │ │ └── send
│ │ │ ├── ConfirmTraceController.java
│ │ │ ├── DownloadTraceController.java
│ │ │ ├── RefundTraceController.java
│ │ │ └── conctract
│ │ │ ├── AgentPayController.java
│ │ │ ├── AgentPayQueryController.java
│ │ │ ├── AgentQueryByCodEpayController.java
│ │ │ ├── AgentSignController.java
│ │ │ ├── AgentSignQueryController.java
│ │ │ └── AgentUnSignController.java
│ │ ├── sign
│ │ │ └── SignatureAndVerification.java
│ │ └── utils
│ │ ├── Base64Util.java
│ │ ├── DateUtil.java
│ │ ├── HttpClientUtils.java
│ │ ├── JsonUtil.java
│ │ └── StringUtil.java
│ ├── resources
│ │ ├── certificate
│ │ │ ├── 103881104410001.pfx
│ │ │ ├── TrustPay.cer
│ │ │ ├── TrustPayTest.cer
│ │ │ └── certPath.properties
│ │ ├── conf.properties
│ │ ├── logback.xml
│ │ └── spring-mvc.xml
│ ├── webapp
│ │ ├── META-INF
│ │ │ └── MANIFEST.MF
│ │ ├── WEB-INF
│ │ │ ├── lib
│ │ │ │ ├── TrustPayClient-V3.1.4.jar
│ │ │ │ ├── commons-beanutils.jar
│ │ │ │ ├── commons-codec-1.3.jar
│ │ │ │ ├── commons-collections.jar
│ │ │ │ ├── commons-httpclient-3.0.1.jar
│ │ │ │ ├── commons-lang.jar
│ │ │ │ ├── commons-logging.jar
│ │ │ │ ├── ezmorph-1.0.6.jar
│ │ │ │ ├── jackson-annotations-2.2.3.jar
│ │ │ │ ├── jackson-core-2.2.3.jar
│ │ │ │ ├── jackson-databind-2.2.3.jar
│ │ │ │ └── jsse.jar
│ │ │ └── web.xml
│ │ ├── confirmTrace.jsp
│ │ ├── confirmTraceResult.jsp
│ │ ├── contract
│ │ │ ├── agentError.jsp
│ │ │ ├── agentPay.jsp
│ │ │ ├── agentPayQuery.jsp
│ │ │ ├── agentPayQueryResult.jsp
│ │ │ ├── agentPayResult.jsp
│ │ │ ├── agentQueryByCodEpay.jsp
│ │ │ ├── agentQueryByCodEpayResult.jsp
│ │ │ ├── agentSignQuery.jsp
│ │ │ ├── agentSignQueryResult.jsp
│ │ │ ├── agentSignReq.jsp
│ │ │ ├── agentSignSubmit.jsp
│ │ │ ├── agentSignSubmitResult.jsp
│ │ │ ├── agentUnSign.jsp
│ │ │ └── agentUnSignResult.jsp
│ │ ├── downloadTrace.jsp
│ │ ├── downloadTraceFail.jsp
│ │ ├── header.jsp
│ │ ├── index.jsp
│ │ ├── js
│ │ │ ├── jquery.min.js
│ │ │ └── moment.js
│ │ ├── refundTrace.jsp
│ │ └── refundTraceResult.jsp
│ └── 参考资料
│ └── readme.txt
├── 5t6t网_BRIDGE新版商户直连DEMO_JAVA版本(V1.4)_2021.06.11.zip
└── 中国农业银行缴费中心商户直连平台(Bridge)接口文档(V1.4).pdf
29 directories, 134 files
评论