Browse Source

Merge branch 'seo' of wangfan/adweb3-server into master

wangfan 1 week ago
parent
commit
ae1e35fd6f

+ 2 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/adweb/payment/controller/ACPController.java

@@ -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());