Go to file
wb1608 1a79f5b720 担保情况统计 2024-04-25 17:25:37 +08:00
.mvn/wrapper first commit 2024-02-19 12:42:04 +08:00
scfs-api-core feat: v2接口添加 2024-04-19 18:46:20 +08:00
scfs-api-rsa feat: v2接口添加 2024-04-19 18:46:20 +08:00
scfs-api-service 担保情况统计 2024-04-25 17:25:37 +08:00
scfs-api-service-cat fix: loan_status 2024-04-22 21:46:24 +08:00
scfs-api-sm feat: v2接口添加 2024-04-19 18:46:20 +08:00
scfs-api-spring-boot-starter feat: v2接口添加 2024-04-19 18:46:20 +08:00
scfs-api-test feat: v2接口添加 2024-04-19 18:46:20 +08:00
.gitignore first commit 2024-02-19 12:42:04 +08:00
pom.xml feat: v2接口添加 2024-04-19 18:46:20 +08:00
readme.md since 2.0.0 2024-02-20 14:57:07 +08:00
scanner.sh jacoco 单元测试覆盖 2024-02-20 17:31:38 +08:00

readme.md

SCFS-API-SDK

使用教程

//  创建配置类
Profile profile=new RsaProfile.Builder()
        .channel(xx)
        .privateKey(xx)
        .addCertificate(xx)
        .build();

// 创建 http 客户端
        ApiClient apiClient=new DefaultApiClientBuilder()
        .profile(profile)
        .build();

// 发起调用
        EchoService echoService=new EchoService(apiClient);
        echoService.

        echo();

生成私钥/证书

通过openSSL生成RSA证书

# 私钥
openssl genrsa -out rsa_private_key.pem 2048

# 证书请求文件
openssl req -utf8 -new -out rsa_csr.pem -key rsa_private_key.pem
# Country Name (2 letter code) [AU]:CN
# State or Province Name (full name) [Some-State]:浙江省
# Locality Name (eg, city) []:杭州市
# Organization Name (eg, company) [Internet Widgits Pty Ltd]:浙江稠州商业银行
# Organizational Unit Name (eg, section) []:数字金融部
# Common Name (e.g. server FQDN or YOUR name) []:scfs.czcb.com.cn
# Email Address []:

# Please enter the following 'extra' attributes
# to be sent with your certificate request
# A challenge password []:
# An optional company name []:

# 证书
openssl x509 -req -days 3650 -in rsa_csr.pem -signkey rsa_private_key.pem -out rsa_certificate.pem

更新版本号

# 快照版本
mvn versions:set -DnewVersion=dev-snapshot

# 正式版本,版本号加一
mvn versions:set -DnewVersion=2.0.0