CommonResponseUtil.java 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright [2022] [https://www.xiaonuo.vip]
  3. *
  4. * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
  5. *
  6. * 1.请不要删除和修改根目录下的LICENSE文件。
  7. * 2.请不要删除和修改Snowy源码头部的版权声明。
  8. * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
  9. * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
  10. * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
  11. * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
  12. */
  13. package vip.xiaonuo.common.util;
  14. import cn.hutool.core.util.CharsetUtil;
  15. import cn.hutool.core.util.ObjectUtil;
  16. import cn.hutool.http.ContentType;
  17. import cn.hutool.json.JSONUtil;
  18. import vip.xiaonuo.common.pojo.CommonResult;
  19. import javax.servlet.http.HttpServletResponse;
  20. import java.io.IOException;
  21. /**
  22. * 通用响应工具类
  23. *
  24. * @author xuyuxiang
  25. * @date 2022/8/4 9:40
  26. **/
  27. public class CommonResponseUtil {
  28. /**
  29. * 以流的方式响应错误信息,默认错误消息
  30. *
  31. * @author xuyuxiang
  32. * @date 2022/8/4 9:41
  33. **/
  34. public static void renderError(HttpServletResponse response) throws IOException {
  35. renderError(response, null);
  36. }
  37. /**
  38. * 以流的方式响应错误信息,指定错误消息
  39. *
  40. * @author xuyuxiang
  41. * @date 2022/8/4 9:41
  42. **/
  43. public static void renderError(HttpServletResponse response, String msg) throws IOException {
  44. response.setCharacterEncoding(CharsetUtil.UTF_8);
  45. response.setContentType(ContentType.JSON.toString());
  46. response.getWriter().write(JSONUtil.toJsonStr(ObjectUtil.isNotEmpty(msg)?CommonResult.error(msg):CommonResult.error()));
  47. }
  48. /**
  49. * 以流的方式响应错误信息,指定错误码和错误消息
  50. *
  51. * @author xuyuxiang
  52. * @date 2022/8/4 9:41
  53. **/
  54. public static void renderError(HttpServletResponse response, Integer code, String msg) throws IOException {
  55. response.setCharacterEncoding(CharsetUtil.UTF_8);
  56. response.setContentType(ContentType.JSON.toString());
  57. response.getWriter().write(JSONUtil.toJsonStr(CommonResult.get(code, msg, null)));
  58. }
  59. }