|
@@ -1,5 +1,7 @@
|
|
|
package com.macro.mall.portal.component;
|
|
|
|
|
|
+import cn.hutool.json.JSONUtil;
|
|
|
+import com.macro.mall.common.api.CommonResult;
|
|
|
import org.springframework.security.core.Authentication;
|
|
|
import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
|
|
|
|
|
@@ -15,7 +17,7 @@ public class GoAuthenticationSuccessHandler implements AuthenticationSuccessHand
|
|
|
@Override
|
|
|
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException {
|
|
|
response.setHeader("Content-Type", "application/json;charset=utf-8");
|
|
|
- response.getWriter().print("{\"code\":200,\"message\":\"登录成功\"}");
|
|
|
+ response.getWriter().print(JSONUtil.parse(CommonResult.success(null,"登录成功")));
|
|
|
response.getWriter().flush();
|
|
|
}
|
|
|
}
|