访问url地址 但tomcat会发两次请求??

statDate===2017-06-27================2017年7月11日 16:06:43
执行成功,共删除0条。2017年7月11日 16:06:43
执行成功,共插入48835条。2017年7月11日 16:07:08
log_analysis_access started at 2017年7月11日 16:07:08
log_analysis_access finished at 2017年7月11日 16:07:12
lesson_statistics started at 2017年7月11日 16:07:12
========config file : /var/data/www/apps/meol/web/homepage/styles/style_2_03/client.properties
username from other plat: 2170707705
get username: 2170707705
statDate===2017-06-27================2017年7月11日 16:11:44
执行成功,共删除48835条。2017年7月11日 16:11:45
执行成功,共插入48835条。2017年7月11日 16:12:10
lesson_statistics finished at 2017年7月11日 16:12:47
teacher_statistics started at 2017年7月11日 16:12:47
teacher_statistics finished at 2017年7月11日 16:12:59
student_statistics started at 2017年7月11日 16:12:59
student_statistics finished at 2017年7月11日 16:13:08
stat_today_log started at 2017年7月11日 16:13:08
stat_today_log finished at 2017年7月11日 16:13:15
visitCount started at 2017年7月11日 16:13:15
log_analysis_access started at 2017年7月11日 16:13:15
 old counter at 21812467
visitCount finished at 2017年7月11日 16:13:15
counter at 21824791
执行结束,共删除48835条。
delete from EOL_BOARD_LESSON_NEW started at 2017年7月11日 16:13:16
log_analysis_access finished at 2017年7月11日 16:13:19
lesson_statistics started at 2017年7月11日 16:13:19
lesson_statistics finished at 2017年7月11日 16:13:19
teacher_statistics started at 2017年7月11日 16:13:19
teacher_statistics finished at 2017年7月11日 16:13:19
student_statistics started at 2017年7月11日 16:13:19
student_statistics finished at 2017年7月11日 16:13:20
stat_today_log started at 2017年7月11日 16:13:20
stat_today_log finished at 2017年7月11日 16:13:24
visitCount started at 2017年7月11日 16:13:24
 old counter at 21824791
visitCount finished at 2017年7月11日 16:13:24
counter at 21824791
执行结束,共删除0条。
delete from EOL_BOARD_LESSON_NEW started at 2017年7月11日 16:13:25
delete from EOL_BOARD_LESSON_NEW finished at 2017年7月11日 16:14:32
delete from EOL_BOARD_LESS_STUD_NEW started at 2017年7月11日 16:14:32
delete from EOL_BOARD_LESS_STUD_NEW finished at 2017年7月11日 16:14:32
delete from EOL_BOARD_TEACHER_NEW started at 2017年7月11日 16:14:32
delete from EOL_BOARD_TEACHER_NEW finished at 2017年7月11日 16:14:32
freeConn start===
freeConn end
delete from EOL_BOARD_LESSON_NEW finished at 2017年7月11日 16:14:40
delete from EOL_BOARD_LESS_STUD_NEW started at 2017年7月11日 16:14:40
delete from EOL_BOARD_LESS_STUD_NEW finished at 2017年7月11日 16:14:41
delete from EOL_BOARD_TEACHER_NEW started at 2017年7月11日 16:14:41
delete from EOL_BOARD_TEACHER_NEW finished at 2017年7月11日 16:14:41
freeConn start===
freeConn end

解决: wget ‘url’

时间: 2024-08-28 18:31:50

访问url地址 但tomcat会发两次请求??的相关文章

获取网页URL地址及参数等的两种方法(js和C#)

转:获取网页URL地址及参数等的两种方法(js和C#) 一 js 先看一个示例 用javascript获取url网址信息 <script type="text/javascript"> document.write("location.host="+location.host+"<br>"); document.write("location.hostname="+location.hostname+&

用java程序直接访问URL地址

/**       * 程序中访问http数据接口       */      public static String getURLContent(String urlStr) {                     /** 网络的url地址 */           URL url = null;                    /** http连接 */       HttpURLConnection httpConn = null;                   /**/

Python3学习笔记:使用代理访问url地址

#! /usr/bin/env python3 # -*- coding:utf-8 -*- 'python进行代理的curl数据提交' __author__ = 'ken' import os; import sys; curPath = os.path.abspath(os.path.dirname(__file__)); sys.path.append(curPath); import urllib.request; import urllib.parse; import socket;

C#访问url地址并返回数据

public string getPostBackStream(string rUrl) { WebClient myWebClient = new WebClient(); NameValueCollection myNameValueCollection = new NameValueCollection(); myNameValueCollection.Add("title", "this is title"); myNameValueCollection.A

SQL Server 访问URL 调用WebServer

以下整理的SQL Server中访问URL地址的方法,并已封装成存储过程,可以实现POST/GET请求 SET QUOTED_IDENTIFIER ON SET ANSI_NULLS ON GO /** 存储过程发起URL请求 启用 Ole Automation Procedures 选项 exec sp_configure 'show advanced options',1; go reconfigure; go sp_configure 'Ole Automation Procedures'

如何快速的获得url地址中参数名和参数值(在看PHP手册的时候无意间看见这两个函数,猜想能不能搭配使用。)

今天在看手册的时候,无意间看到这两个内置函数parse_url和parse_str.看到他们的用法后,我突然想到能不能利用这两个函数来获得url地址中的参数.为了验证我的猜想,我就以如下url为例子:https://www.baidu.com/baidu?wd=百度&tn=monline_4_dg&ie=utf-8 代码如下: $url = 'https://www.baidu.com/baidu?wd=百度&tn=monline_4_dg&ie=utf-8'; $url_

JS获取上一访问页面URL地址document.referrer实践2

一.JS获取前一个访问页面的URL地址document.referrer 要获取前一个访问页面的URL地址前后端语言都可以,例如PHP的是$_SERVER['HTTP_REFERER'],JavaScript的就是document.referrer. 我们平常开发,虽然和URL打交道也算比较频繁,但是,似乎很少使用document.referrer.我起初以为是兼容性不好,后来测试发现ie7都支持,那就奇怪了,为何document.referrer用的不多呢? 我想了一下,可能有下面几个原因:

ASP.NET MVC中获取URL地址参数的两种写法

一.url地址传参的第一种写法 1.通过mvc中默认的url地址书写格式:控制器/方法名/参数 2.实例:http://localhost:39270/RequestDemo/Index/88,默认参数名为id所以名称为id. 如果使用其他名称,后台是无法读取的会报错 二.url地址传参的第二种写法 1.使用?加参数名=参数值的写法,如果有多个参数使用&来连接 http://localhost:39270/RequestDemo/Index?id=88&name=%E5%BC%A0%E4%

tomcat访问(access)日志配置、记录Post请求参数(转)

一.配置与说明 tomcat访问日志格式配置,在config/server.xml里Host标签下加上 <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"               prefix="localhost_access_log." suffix=".txt"               pattern=&