|
@@ -16,6 +16,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
@@ -51,6 +52,7 @@ public class ACPController {
|
|
|
|
|
|
/** 获取ACP URL里的参数 - 签名,加密 */
|
|
|
@GetMapping(value = "/getUrlParams")
|
|
|
+ @ResponseBody
|
|
|
public Result<List<String>> getUrlParams() throws Exception {
|
|
|
LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
|
SysUser sysUser = sysUserService.getById(loginUser.getId());
|