|
@@ -3,7 +3,9 @@ package com.shcd.controller;
|
|
|
import com.shcd.entity.LicenceEntity;
|
|
|
import com.shcd.service.LicenceService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.web.bind.annotation.*;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.util.UUID;
|
|
@@ -24,24 +26,26 @@ public class ServerController {
|
|
|
/**
|
|
|
* 下载证书文件
|
|
|
* 实际项目可以根据前端传递的参数来创建证书字段属性。这里为了测试,直接写测试数据
|
|
|
+ *
|
|
|
* @param response
|
|
|
*/
|
|
|
@PostMapping("/downLoadLicence")
|
|
|
- public void downLoadLicence(HttpServletResponse response){
|
|
|
+ public void downLoadLicence(HttpServletResponse response) {
|
|
|
LicenceEntity dtoEntity = createEntity();
|
|
|
licenceService.downLoadLicence(dtoEntity, response);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 创建测试实体
|
|
|
+ *
|
|
|
* @return
|
|
|
*/
|
|
|
- private LicenceEntity createEntity(){
|
|
|
+ private LicenceEntity createEntity() {
|
|
|
LicenceEntity entity = new LicenceEntity();
|
|
|
entity.setLicenceId(UUID.randomUUID().toString().replaceAll("-", ""));//证书 ID
|
|
|
entity.setLicenceName("城地数据归集治理测产品软件");//证书名称
|
|
|
- entity.setBusinessJarHash("6D1E3B782609B70C24C27D23239D26EDE64E1CA922751BF3AD13CDE24534B494"); // 要么留空 要么输入业务jar的hash
|
|
|
- entity.setBusinessJarPath("C:\\Users\\胡荣基\\Desktop\\dcc-admin-catalog.jar"); // 要么留空 要么输入业务jar的hash
|
|
|
+ entity.setBusinessJarHash("0BB4742D7F1A7DD69EDE815897359432169BB1E90CF14F4FEDF3517E798415FF"); // 要么留空 要么输入业务jar的hash
|
|
|
+ entity.setBusinessJarPath("C:\\Users\\胡荣基\\Desktop\\client-offline-1.0.0.RELEASE-encrypted.jar"); // 要么留空 要么输入业务jar的hash
|
|
|
entity.setMac(null);//客户端机器的网卡物理地址,要么留空,要么输入客户端的 Mac 地址
|
|
|
entity.setEffectStartDate("2024-11-14");//证书生效开始日期,格式:yyyy-MM-dd
|
|
|
entity.setEffectEndDate("2024-12-15");//证书生效结束日期,格式:yyyy-MM-dd
|