private void info(HttpServletRequest request){
/**
* 1.获得客户机信息
*/
String requestUrl = request.getRequestURL().toString();//得到请求的URL地址
String requestUri = request.getRequestURI();//得到请求的资源
String queryString = request.getQueryString();//得到请求的URL地址中附带的参数
String remoteAddr = request.getRemoteAddr();//得到来访者的IP地址
String remoteHost = request.getRemoteHost();
int remotePort = request.getRemotePort();
String remoteUser = request.getRemoteUser();
String method = request.getMethod();//得到请求URL地址时使用的方法
String pathInfo = request.getPathInfo();
String localAddr = request.getLocalAddr();//获取WEB服务器的IP地址
String localName = request.getLocalName();//获取WEB服务器的主机名
//通过设置响应头控制浏览器以UTF-8的编码显示数据,如果不加这句话,那么浏览器显示的将是乱码
logger.info("获取到的客户机信息如下:");
logger.info("请求的URL地址:" + requestUrl);
logger.info("请求的资源:" + requestUri);
logger.info("请求的URL地址中附带的参数:" + queryString);
logger.info("来访者的IP地址:" + remoteAddr);
logger.info("来访者的主机名:" + remoteHost);
logger.info("使用的端口号:" + remotePort);
logger.info("remoteUser:" + remoteUser);
logger.info("请求使用的方法:" + method);
logger.info("pathInfo:" + pathInfo);
logger.info("localAddr:" + localAddr);
logger.info("localName:" + localName);
}