项目中org.apache.commons.lang引用改成org.apache.commons.lang3

This commit is contained in:
Alioth 2020-04-03 17:21:48 +08:00
parent ec65b1f7ec
commit 3f703471d4

View File

@ -1,14 +1,15 @@
package com.ruoyi.common.utils.http;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.servlet.ServletRequest;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.Charset;
import javax.servlet.ServletRequest;
import org.apache.commons.lang.exception.ExceptionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 通用http工具封装
@ -46,7 +47,7 @@ public class HttpHelper
}
catch (IOException e)
{
LOGGER.error(ExceptionUtils.getFullStackTrace(e));
LOGGER.error(ExceptionUtils.getStackTrace(e));
}
}
}