1
13693261870
2025-01-15 15e626bfb9d8b368e674dab564a353d27f6b3d29
se-modules/se-system/src/main/java/com/se/system/controller/SysSoftController.java
@@ -5,21 +5,16 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.se.system.domain.vo.LicenseExtraParamVo;
import com.se.system.domain.vo.NacosConfigVo;
import com.se.system.service.NacosService;
import org.omg.CORBA.ServerRequest;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.se.system.service.inte.IAServerInfoService;
import com.se.system.utils.CommonUtils;
import org.springframework.web.bind.annotation.*;
import com.se.common.log.annotation.Log;
import com.se.common.log.enums.BusinessType;
import com.se.common.security.annotation.RequiresPermissions;
import com.se.system.domain.SysSoft;
import com.se.system.domain.*;
import com.se.system.service.inte.ISysSoftService;
import com.se.common.core.web.controller.BaseController;
import com.se.common.core.web.domain.AjaxResult;
@@ -133,4 +128,24 @@
            }
        }
    }
    @GetMapping(value = "/getServerInfo")
    public AjaxResult getServerInfo() {
        LicenseExtraParamVo serverInfos = IAServerInfoService.getServer("").getServerInfos();
        System.out.println("serverInfos = " + serverInfos);
        return success(serverInfos);
    }
    @GetMapping(value = "/getLicenseKey")
    public AjaxResult getLicenseKey() throws Exception {
        LicenseExtraParamVo serverInfos = IAServerInfoService.getServer("").getServerInfos();
        String jsonString = serverInfos.toJsonString();
        System.out.println("原始数据 = " + jsonString);
        String encryptedJson = CommonUtils.encrypt(jsonString);
        System.out.println("加密数据 = " + serverInfos);
        return AjaxResult.success("ok", encryptedJson);
    }
}