tomcat每次启动时,自动在logs目录下生产以下日志文件,按照日期自动备份。可以帮助我们更好的找出错误。

一、认识各种目录的作用及记录的信息

目录
在这里插入图片描述
1.catalina.日期.log
这个主要是记录tomcat启动时候的信息,类似于我们在eclipse中启动服务的时候在控制台看到的信息。在里面可以看到启动的JVM参数以及操作系统等日志信息。如果没有使用log4j等日志机制,系统的的错误信息与打印语句也在这个日志文件中记录。(linux下所有的日志都在catalina.out中)
例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server version: Apache Tomcat/7.0.92
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server built: Nov 9 2018 11:07:44 UTC
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server number: 7.0.92.0
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Name: Windows NT (unknown)
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Version: 10.0
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Architecture: amd64
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Java Home: D:\Java\jdk1.8.0\jre
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Version: 1.8.0_112-b15
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Vendor: Oracle Corporation
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_BASE: D:\server\apache-tomcat-7.0.92
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_HOME: D:\server\apache-tomcat-7.0.92
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.config.file=D:\server\apache-tomcat-7.0.92\conf\logging.properties
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djdk.tls.ephemeralDHKeySize=2048
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dignore.endorsed.dirs=
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.base=D:\server\apache-tomcat-7.0.92
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.home=D:\server\apache-tomcat-7.0.92
十二月 24, 2018 10:34:11 上午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.io.tmpdir=D:\server\apache-tomcat-7.0.92\temp
十二月 24, 2018 10:34:11 上午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: Loaded APR based Apache Tomcat Native library 1.2.18 using APR version 1.6.5.
十二月 24, 2018 10:34:11 上午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
十二月 24, 2018 10:34:11 上午 org.apache.catalina.core.AprLifecycleListener initializeSSL
信息: OpenSSL successfully initialized (OpenSSL 1.1.1 11 Sep 2018)
十二月 24, 2018 10:34:12 上午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["http-apr-8360"]
十二月 24, 2018 10:34:12 上午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["ajp-apr-8009"]
十二月 24, 2018 10:34:12 上午 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 1211 ms
十二月 24, 2018 10:34:12 上午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Catalina
十二月 24, 2018 10:34:12 上午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.92
十二月 24, 2018 10:34:12 上午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deploying web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core_rt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt_rt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/permittedTaglibs is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/scriptfree is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql_rt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined
十二月 24, 2018 10:34:20 上午 org.apache.catalina.startup.TldConfig execute
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
十二月 24, 2018 10:34:27 上午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deployment of web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war has finished in 14,368 ms
十二月 24, 2018 10:34:27 上午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["http-apr-8360"]
十二月 24, 2018 10:34:27 上午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["ajp-apr-8009"]
十二月 24, 2018 10:34:27 上午 org.apache.catalina.startup.Catalina start
信息: Server startup in 14558 ms


2.commons-daemon.日期.log
这个日期放的估计是利用服务方式启动tomcat作为守护进程的日志记录,因为我的tomcat启动方式是以服务的方式启动的,索引产生这个日志文件记录了服务的启动状态。
例如:

1
2
3
4
5
6
7
[2018-12-17 09:41:00] [info]  [ 1416] Commons Daemon procrun (1.1.0.0 64-bit) started
[2018-12-17 09:41:00] [info] [ 1416] Running 'Tomcat7' Service...
[2018-12-17 09:41:00] [info] [ 1180] Starting service...
[2018-12-17 09:41:01] [info] [ 1180] Service started in 1175 ms.
[2018-12-18 09:36:36] [info] [ 1416] Run service finished.
[2018-12-18 09:36:36] [info] [ 1416] Commons Daemon procrun finished

3.host-manager.日期.log
这个估计是放tomcat的自带的manager项目的日志信息的,也没有看到有什么重要的日志信息
我看我的tomcat里面的这个文件一般是空的,并没有什么日志。
4.localhost.日期.log
这个类似于第一种日志,可是信息没有第一种全
例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
一月 04, 2019 4:23:51 下午 org.apache.catalina.core.ApplicationContext log
信息: Destroying Spring FrameworkServlet 'dispatcher'
一月 04, 2019 4:23:51 下午 org.apache.catalina.core.ApplicationContext log
信息: Closing Spring root WebApplicationContext
一月 04, 2019 4:23:53 下午 org.apache.catalina.core.ApplicationContext log
信息: Shutting down log4j
一月 04, 2019 4:24:02 下午 org.apache.catalina.core.ApplicationContext log
信息: No Spring WebApplicationInitializer types detected on classpath
一月 04, 2019 4:24:02 下午 org.apache.catalina.core.ApplicationContext log
信息: Set web app root system property: 'xuguoyin.root' = [D:\server\apache-tomcat-7.0.92\webapps\ROOT\]
一月 04, 2019 4:24:02 下午 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring root WebApplicationContext
一月 04, 2019 4:24:06 下午 org.apache.catalina.core.ApplicationContext log
信息: Initializing Spring FrameworkServlet 'dispatcher'


5.localhost_access_log.日期.txt
这个是存放访问tomcat的请求的所有地址以及请求的路径、时间,请求协议以及返回码等信息(重要)
例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
192.170.3.137 - - [23/Dec/2018:08:11:14 +0800] "GET / HTTP/1.1" 200 10343
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "POST /doLogin HTTP/1.1" 200 78
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "GET / HTTP/1.1" 200 950
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "GET /top.jsp HTTP/1.1" 200 3167
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "GET /go_total_index HTTP/1.1" 200 24352
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 33951
192.170.3.137 - - [23/Dec/2018:08:11:22 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
192.170.3.137 - - [23/Dec/2018:08:11:23 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
192.170.3.137 - - [23/Dec/2018:08:11:23 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
192.170.3.137 - - [23/Dec/2018:08:11:23 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
192.170.3.137 - - [23/Dec/2018:08:11:25 +0800] "GET /job_door/to_werks_door?werks=1002&addDate=2018-12-22 HTTP/1.1" 200 32068
192.170.3.137 - - [23/Dec/2018:08:11:25 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
192.170.3.137 - - [23/Dec/2018:08:11:25 +0800] "GET /job_door/loadDeptScoreArr?werksCode=1002&addDate=2018-12-22 HTTP/1.1" 200 470
192.170.3.137 - - [23/Dec/2018:08:11:27 +0800] "GET /job_door/to_dept_door?zbType=6&werks=1002&addDate=2018-12-22 HTTP/1.1" 200 12285
192.170.3.137 - - [23/Dec/2018:08:11:27 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
192.170.3.137 - - [23/Dec/2018:08:11:32 +0800] "POST /ajax/entity/find_zb_list HTTP/1.1" 200 1158
192.170.3.137 - - [23/Dec/2018:08:11:32 +0800] "GET /job_door/to_zb_detail_page_list?werksNum=1002&zbId=18&addDate=2018-12-22 HTTP/1.1" 200 13726
192.170.3.137 - - [23/Dec/2018:08:11:33 +0800] "GET /job_door/load_dimension_name?zbId=18 HTTP/1.1" 200 387
192.170.3.137 - - [23/Dec/2018:08:11:33 +0800] "GET /job_door/zb_detail_table_header?zbId=18 HTTP/1.1" 200 1092
192.170.3.137 - - [23/Dec/2018:08:11:33 +0800] "GET /job_door/load_dimension_value?dimensionId=177 HTTP/1.1" 200 206
192.170.3.137 - - [23/Dec/2018:08:11:33 +0800] "GET /job_door/zb_detail_page_list?size=10&current=0&werkCode=1002&zbId=18&addDate=2018-12-22&dimensionId=177&dimensionValue=&isYuQi=false&_=1545523914268 HTTP/1.1" 200 6674
192.170.3.137 - - [23/Dec/2018:08:11:35 +0800] "GET /job_door/zb_detail_page_list?size=10&current=0&werkCode=1002&zbId=18&addDate=2018-12-22&dimensionId=177&dimensionValue=+&isYuQi=true&_=1545523914269 HTTP/1.1" 200 4674
192.168.4.150 - - [23/Dec/2018:09:14:53 +0800] "GET /favicon.ico HTTP/1.1" 200 10343
115.214.182.65 - - [23/Dec/2018:09:43:59 +0800] "GET / HTTP/1.1" 200 10343
115.214.182.65 - - [23/Dec/2018:09:44:03 +0800] "POST /doLogin HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:09:44:03 +0800] "GET / HTTP/1.1" 200 950
115.214.182.65 - - [23/Dec/2018:09:44:03 +0800] "GET /top.jsp HTTP/1.1" 200 3176
115.214.182.65 - - [23/Dec/2018:09:44:03 +0800] "GET /go_total_index HTTP/1.1" 200 27022
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 33951
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
115.214.182.65 - - [23/Dec/2018:09:44:04 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
115.214.182.65 - - [23/Dec/2018:09:44:08 +0800] "GET /job_door/to_werks_door?werks=1801&addDate=2018-12-22 HTTP/1.1" 200 27493
115.214.182.65 - - [23/Dec/2018:09:44:08 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:09:44:08 +0800] "GET /job_door/loadDeptScoreArr?werksCode=1801&addDate=2018-12-22 HTTP/1.1" 200 471
115.214.182.65 - - [23/Dec/2018:09:44:11 +0800] "GET /job_door/to_dept_door?zbType=2&werks=1801&addDate=2018-12-22 HTTP/1.1" 200 8891
115.214.182.65 - - [23/Dec/2018:09:44:11 +0800] "GET /css/logic/dept_door.css HTTP/1.1" 304 -
115.214.182.65 - - [23/Dec/2018:09:44:11 +0800] "GET /js/logic/dept_door.js HTTP/1.1" 304 -
115.214.182.65 - - [23/Dec/2018:09:44:11 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:09:44:26 +0800] "POST /ajax/entity/find_zb_list HTTP/1.1" 200 1443
115.214.182.65 - - [23/Dec/2018:09:44:26 +0800] "GET /job_door/to_zb_detail_page_list?werksNum=1801&zbId=63&addDate=2018-12-22 HTTP/1.1" 200 13727
115.214.182.65 - - [23/Dec/2018:09:44:26 +0800] "GET /bootstrap/table/bootstrap-table.js HTTP/1.1" 304 -
115.214.182.65 - - [23/Dec/2018:09:44:26 +0800] "GET /job_door/load_dimension_name?zbId=63 HTTP/1.1" 200 690
115.214.182.65 - - [23/Dec/2018:09:44:27 +0800] "GET /job_door/zb_detail_table_header?zbId=63 HTTP/1.1" 200 1246
115.214.182.65 - - [23/Dec/2018:09:44:29 +0800] "GET /job_door/load_dimension_value?dimensionId=103 HTTP/1.1" 200 1753
115.214.182.65 - - [23/Dec/2018:09:44:31 +0800] "GET /job_door/zb_detail_page_list?size=10&current=0&werkCode=1801&zbId=63&addDate=2018-12-22&dimensionId=103&dimensionValue=&isYuQi=false&_=1545529433860 HTTP/1.1" 200 6479
115.214.182.65 - - [23/Dec/2018:09:44:38 +0800] "GET /job_door/zb_detail_page_list?size=10&current=10&werkCode=1801&zbId=63&addDate=2018-12-22&dimensionId=103&dimensionValue=+&isYuQi=false&_=1545529433861 HTTP/1.1" 200 6744
192.170.3.151 - - [23/Dec/2018:14:29:43 +0800] "GET / HTTP/1.1" 200 10343
192.170.3.151 - - [23/Dec/2018:14:29:44 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "POST /doLogin HTTP/1.1" 200 78
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET / HTTP/1.1" 200 950
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET /top.jsp HTTP/1.1" 200 3167
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET /go_total_index HTTP/1.1" 200 24352
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/js/bootstrap.min.js HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 33951
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "GET /js/logic/company_door.js HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:45 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
192.170.3.151 - - [23/Dec/2018:14:29:46 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
192.170.3.151 - - [23/Dec/2018:14:29:46 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
192.170.3.151 - - [23/Dec/2018:14:29:46 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
192.170.3.151 - - [23/Dec/2018:14:29:49 +0800] "GET /job_door/to_werks_door?werks=1002&addDate=2018-12-22 HTTP/1.1" 200 32068
192.170.3.151 - - [23/Dec/2018:14:29:49 +0800] "GET /js/logic/werks_door.js HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:49 +0800] "GET /css/mine/simple_table.css HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:49 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
192.170.3.151 - - [23/Dec/2018:14:29:49 +0800] "GET /job_door/loadDeptScoreArr?werksCode=1002&addDate=2018-12-22 HTTP/1.1" 200 470
192.170.3.151 - - [23/Dec/2018:14:29:57 +0800] "GET /job_door/to_dept_door?zbType=5&werks=1002&addDate=2018-12-22 HTTP/1.1" 200 7238
192.170.3.151 - - [23/Dec/2018:14:29:57 +0800] "GET /css/logic/dept_door.css HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:57 +0800] "GET /js/logic/dept_door.js HTTP/1.1" 304 -
192.170.3.151 - - [23/Dec/2018:14:29:58 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:23 +0800] "GET / HTTP/1.1" 200 10343
112.65.187.133 - - [23/Dec/2018:19:55:23 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
112.65.187.133 - - [23/Dec/2018:19:55:23 +0800] "GET /css/login_style.css?13 HTTP/1.1" 200 7664
112.65.187.133 - - [23/Dec/2018:19:55:23 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
112.65.187.133 - - [23/Dec/2018:19:55:24 +0800] "GET /images/login/pass-icon.png HTTP/1.1" 200 1094
112.65.187.133 - - [23/Dec/2018:19:55:24 +0800] "GET /images/transparence_background_image.png HTTP/1.1" 200 2243
112.65.187.133 - - [23/Dec/2018:19:55:24 +0800] "GET /images/login/user-icon.png HTTP/1.1" 200 1141
112.65.187.133 - - [23/Dec/2018:19:55:32 +0800] "POST /doLogin HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:33 +0800] "GET / HTTP/1.1" 200 950
112.65.187.133 - - [23/Dec/2018:19:55:33 +0800] "GET /top.jsp HTTP/1.1" 200 3176
112.65.187.133 - - [23/Dec/2018:19:55:33 +0800] "GET /go_total_index HTTP/1.1" 200 27022
112.65.187.133 - - [23/Dec/2018:19:55:33 +0800] "GET /images/customer_logo.png HTTP/1.1" 200 7370
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /bootstrap/bootstrap_v3/datetimepicker/css/bootstrap-datetimepicker.min.css HTTP/1.1" 200 11276
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /toastr/toastr.min.css HTTP/1.1" 200 5420
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /stylesheets/premium.css HTTP/1.1" 200 11588
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /stylesheets/theme.css HTTP/1.1" 200 22645
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /css/mine/bottom_gray.css? HTTP/1.1" 200 1386
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /toastr/toastr.min.js HTTP/1.1" 200 3695
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /mloading/jquery.mloading.css HTTP/1.1" 200 1878
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/js/bootstrap.min.js HTTP/1.1" 200 27705
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /bootstrap/bootstrap_v3/datetimepicker/js/bootstrap-datetimepicker.js HTTP/1.1" 200 70107
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /lib/bootstrap/js/bootstrap-paginator.js HTTP/1.1" 200 21486
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /bootstrap/bootstrap_v3/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js HTTP/1.1" 200 813
112.65.187.133 - - [23/Dec/2018:19:55:34 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 97339
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /lib/bootstrap/css/bootstrap.css HTTP/1.1" 200 127005
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /mloading/jquery.mloading.js HTTP/1.1" 200 9052
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/index_background_image.png HTTP/1.1" 200 925696
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/back_gray.png HTTP/1.1" 200 1127
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/company_door_check.png HTTP/1.1" 200 434
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/theme_analyse_check.png HTTP/1.1" 200 735
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/my_attention_check.png HTTP/1.1" 200 380
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/dept_door_check.png HTTP/1.1" 200 410
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/manage_tool_check.png HTTP/1.1" 200 637
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/physical_report_check.png HTTP/1.1" 200 983
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/zb_define_check.png HTTP/1.1" 200 757
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/manage_improve_check.png HTTP/1.1" 200 698
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/scroing_model_check.png HTTP/1.1" 200 948
112.65.187.133 - - [23/Dec/2018:19:55:35 +0800] "GET /images/icon/model_define_check.png HTTP/1.1" 200 1080
112.65.187.133 - - [23/Dec/2018:19:55:36 +0800] "GET /images/icon/personal_set_check.png HTTP/1.1" 200 975
112.65.187.133 - - [23/Dec/2018:19:55:36 +0800] "GET /images/icon/zuzhijiagou_check.png HTTP/1.1" 200 411
112.65.187.133 - - [23/Dec/2018:19:55:37 +0800] "GET /images/icon/sys_set_check.png HTTP/1.1" 200 1361
112.65.187.133 - - [23/Dec/2018:19:55:37 +0800] "GET /images/icon/authority_maintain.png HTTP/1.1" 200 12055
112.65.187.133 - - [23/Dec/2018:19:55:37 +0800] "GET /images/icon/more.png HTTP/1.1" 200 1010
112.65.187.133 - - [23/Dec/2018:19:55:37 +0800] "GET /images/bottom_logo.png HTTP/1.1" 200 7538
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 33951
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /js/logic/company_door.js HTTP/1.1" 200 13437
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /css/mine/table.css HTTP/1.1" 200 602
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /highcharts5.0.12/js_copy_from_line/highcharts-zh_CN.js HTTP/1.1" 200 4009
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /css/logic/company_door.css HTTP/1.1" 200 1400
112.65.187.133 - - [23/Dec/2018:19:55:38 +0800] "GET /native_xiala_select/css/style.css HTTP/1.1" 200 1726
112.65.187.133 - - [23/Dec/2018:19:55:39 +0800] "GET /native_xiala_select/js/dropDown.js HTTP/1.1" 200 1910
112.65.187.133 - - [23/Dec/2018:19:55:39 +0800] "GET /highcharts5.0.12/js_copy_from_line/highcharts.js HTTP/1.1" 200 194014
112.65.187.133 - - [23/Dec/2018:19:55:41 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:41 +0800] "GET /native_xiala_select/images/xl-icon_03.png HTTP/1.1" 200 316
112.65.187.133 - - [23/Dec/2018:19:55:41 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
112.65.187.133 - - [23/Dec/2018:19:55:41 +0800] "GET /favicon.ico HTTP/1.1" 200 5392
112.65.187.133 - - [23/Dec/2018:19:55:42 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:55:43 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:55:43 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 16448
112.65.187.133 - - [23/Dec/2018:19:55:45 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:55:45 +0800] "GET /job_door/to_company_door?&addDate=2018-12-21&zbType=0&werks= HTTP/1.1" 200 33951
112.65.187.133 - - [23/Dec/2018:19:55:45 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:46 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
112.65.187.133 - - [23/Dec/2018:19:55:46 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:55:46 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:55:50 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:55:50 +0800] "GET /job_door/to_company_door?&addDate=2018-12-20&zbType=0&werks= HTTP/1.1" 200 33951
112.65.187.133 - - [23/Dec/2018:19:55:52 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:53 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
112.65.187.133 - - [23/Dec/2018:19:55:53 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:55:54 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:55:59 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:55:59 +0800] "GET /job_door/to_company_door?&addDate=2018-11-28&zbType=0&werks= HTTP/1.1" 200 33911
112.65.187.133 - - [23/Dec/2018:19:55:59 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:55:59 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 858
112.65.187.133 - - [23/Dec/2018:19:56:00 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 404
112.65.187.133 - - [23/Dec/2018:19:56:00 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 354
112.65.187.133 - - [23/Dec/2018:19:56:02 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:02 +0800] "GET /job_door/to_company_door?&addDate=2018-11-29&zbType=0&werks= HTTP/1.1" 200 33951
112.65.187.133 - - [23/Dec/2018:19:56:02 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:02 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
112.65.187.133 - - [23/Dec/2018:19:56:02 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:03 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 352
112.65.187.133 - - [23/Dec/2018:19:56:05 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:05 +0800] "GET /job_door/to_company_door?&addDate=2018-11-30&zbType=0&werks= HTTP/1.1" 200 33911
112.65.187.133 - - [23/Dec/2018:19:56:05 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:05 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 858
112.65.187.133 - - [23/Dec/2018:19:56:06 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 404
112.65.187.133 - - [23/Dec/2018:19:56:06 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 355
112.65.187.133 - - [23/Dec/2018:19:56:09 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:09 +0800] "GET /job_door/to_company_door?&addDate=2018-11-01&zbType=0&werks= HTTP/1.1" 200 33950
112.65.187.133 - - [23/Dec/2018:19:56:10 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:10 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 855
112.65.187.133 - - [23/Dec/2018:19:56:10 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:10 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:56:12 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:12 +0800] "GET /job_door/to_company_door?&addDate=2018-11-02&zbType=0&werks= HTTP/1.1" 200 33950
112.65.187.133 - - [23/Dec/2018:19:56:13 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:13 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 855
112.65.187.133 - - [23/Dec/2018:19:56:13 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:13 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:56:15 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:15 +0800] "GET /job_door/to_company_door?&addDate=2018-11-10&zbType=0&werks= HTTP/1.1" 200 33954
112.65.187.133 - - [23/Dec/2018:19:56:15 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:15 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 859
112.65.187.133 - - [23/Dec/2018:19:56:16 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:16 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 347
112.65.187.133 - - [23/Dec/2018:19:56:18 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:18 +0800] "GET /job_door/to_company_door?&addDate=2018-11-09&zbType=0&werks= HTTP/1.1" 200 33950
112.65.187.133 - - [23/Dec/2018:19:56:19 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:19 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 855
112.65.187.133 - - [23/Dec/2018:19:56:19 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:19 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
112.65.187.133 - - [23/Dec/2018:19:56:20 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:21 +0800] "GET /job_door/to_company_door?&addDate=2018-11-10&zbType=0&werks= HTTP/1.1" 200 33954
112.65.187.133 - - [23/Dec/2018:19:56:21 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:21 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 859
112.65.187.133 - - [23/Dec/2018:19:56:21 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:21 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 347
223.166.151.191 - - [23/Dec/2018:19:56:22 +0800] "GET / HTTP/1.1" 200 10343
112.65.187.133 - - [23/Dec/2018:19:56:22 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
223.166.151.191 - - [23/Dec/2018:19:56:22 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
112.65.187.133 - - [23/Dec/2018:19:56:22 +0800] "GET /job_door/to_company_door?&addDate=2018-11-11&zbType=0&werks= HTTP/1.1" 200 33954
112.65.187.133 - - [23/Dec/2018:19:56:22 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:22 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 859
112.65.187.133 - - [23/Dec/2018:19:56:22 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:23 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 348
223.166.151.191 - - [23/Dec/2018:19:56:23 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
112.65.187.133 - - [23/Dec/2018:19:56:25 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:25 +0800] "GET /job_door/to_company_door?&addDate=2018-11-12&zbType=0&werks= HTTP/1.1" 200 33952
112.65.187.133 - - [23/Dec/2018:19:56:25 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:25 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 857
112.65.187.133 - - [23/Dec/2018:19:56:25 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
112.65.187.133 - - [23/Dec/2018:19:56:26 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 349
112.65.187.133 - - [23/Dec/2018:19:56:29 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
112.65.187.133 - - [23/Dec/2018:19:56:29 +0800] "GET /sys_set/to_sys_set_index?&addDate=2018-11-12&zbType=0&werks= HTTP/1.1" 200 4059
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "GET /wheel_menu_master/wheelmenu.css HTTP/1.1" 200 486
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "GET /wheel_menu_master/supplement_gray.css?2 HTTP/1.1" 200 3482
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "GET /css/logic/sys_set_index.css HTTP/1.1" 200 359
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "GET /wheel_menu_master/jquery.wheelmenu.js HTTP/1.1" 200 8223
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
112.65.187.133 - - [23/Dec/2018:19:56:30 +0800] "GET /sys_set/to_sys_set_default_company_name_logo_name HTTP/1.1" 200 3550
112.65.187.133 - - [23/Dec/2018:19:56:31 +0800] "GET /lib/font-awesome/css/font-awesome.css HTTP/1.1" 200 26763
112.65.187.133 - - [23/Dec/2018:19:56:31 +0800] "GET /lib/jquery-1.11.1.min.js HTTP/1.1" 200 95790
112.65.187.133 - - [23/Dec/2018:19:56:31 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
210.22.245.219 - - [23/Dec/2018:19:56:33 +0800] "GET /top.jsp HTTP/1.1" 200 3086
223.167.152.53 - - [23/Dec/2018:19:56:33 +0800] "GET /go_total_index HTTP/1.1" 200 10343
223.167.152.53 - - [23/Dec/2018:19:56:33 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
210.22.245.219 - - [23/Dec/2018:19:56:33 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.167.152.53 - - [23/Dec/2018:19:56:33 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
210.22.245.219 - - [23/Dec/2018:19:56:38 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 10343
112.65.187.133 - - [23/Dec/2018:19:56:38 +0800] "GET /sys_set/to_sys_set_default_company_name_logo_name HTTP/1.1" 200 3550
112.65.187.133 - - [23/Dec/2018:19:56:38 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
210.22.245.219 - - [23/Dec/2018:19:56:39 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
112.65.187.133 - - [23/Dec/2018:19:56:39 +0800] "GET /sys_set/to_reset_zb_score HTTP/1.1" 200 8091
112.65.187.133 - - [23/Dec/2018:19:56:39 +0800] "GET /css/loading.css HTTP/1.1" 200 1504
112.65.187.133 - - [23/Dec/2018:19:56:39 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
210.22.245.219 - - [23/Dec/2018:19:56:39 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.167.152.70 - - [23/Dec/2018:19:56:43 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 10343
223.167.152.70 - - [23/Dec/2018:19:56:44 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
116.128.128.79 - - [23/Dec/2018:19:56:44 +0800] "GET /bootstrap/bootstrap_v3/bootstrap/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 10343
116.128.128.79 - - [23/Dec/2018:19:56:44 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.166.151.197 - - [23/Dec/2018:19:56:45 +0800] "GET /job_door/to_company_door?&addDate=2018-12-21&zbType=0&werks= HTTP/1.1" 200 10343
223.167.152.70 - - [23/Dec/2018:19:56:45 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
116.128.128.79 - - [23/Dec/2018:19:56:45 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.166.151.197 - - [23/Dec/2018:19:56:47 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.166.151.197 - - [23/Dec/2018:19:56:47 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
58.247.212.141 - - [23/Dec/2018:19:56:50 +0800] "GET /job_door/to_company_door?&addDate=2018-12-20&zbType=0&werks= HTTP/1.1" 200 10343
58.247.212.141 - - [23/Dec/2018:19:56:51 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.247.212.141 - - [23/Dec/2018:19:56:51 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.166.151.197 - - [23/Dec/2018:19:56:58 +0800] "GET /job_door/to_company_door?&addDate=2018-11-28&zbType=0&werks= HTTP/1.1" 200 10343
223.166.151.197 - - [23/Dec/2018:19:56:59 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.166.151.197 - - [23/Dec/2018:19:57:00 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.167.152.53 - - [23/Dec/2018:19:57:01 +0800] "GET /job_door/to_company_door?&addDate=2018-11-29&zbType=0&werks= HTTP/1.1" 200 10343
223.167.152.53 - - [23/Dec/2018:19:57:02 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.167.152.53 - - [23/Dec/2018:19:57:03 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
58.247.212.141 - - [23/Dec/2018:19:57:05 +0800] "GET /job_door/to_company_door?&addDate=2018-11-30&zbType=0&werks= HTTP/1.1" 200 10343
58.247.212.141 - - [23/Dec/2018:19:57:06 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.247.212.141 - - [23/Dec/2018:19:57:07 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.167.152.53 - - [23/Dec/2018:19:57:09 +0800] "GET /job_door/to_company_door?&addDate=2018-11-01&zbType=0&werks= HTTP/1.1" 200 10343
223.167.152.53 - - [23/Dec/2018:19:57:10 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.167.152.53 - - [23/Dec/2018:19:57:11 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
116.128.128.79 - - [23/Dec/2018:19:57:12 +0800] "GET /job_door/to_company_door?&addDate=2018-11-02&zbType=0&werks= HTTP/1.1" 200 10343
116.128.128.79 - - [23/Dec/2018:19:57:13 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
116.128.128.79 - - [23/Dec/2018:19:57:13 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
58.246.221.163 - - [23/Dec/2018:19:57:15 +0800] "GET /job_door/to_company_door?&addDate=2018-11-10&zbType=0&werks= HTTP/1.1" 200 10343
58.246.221.163 - - [23/Dec/2018:19:57:15 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.246.221.163 - - [23/Dec/2018:19:57:16 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.166.151.191 - - [23/Dec/2018:19:57:18 +0800] "GET /job_door/to_company_door?&addDate=2018-11-09&zbType=0&werks= HTTP/1.1" 200 10343
223.166.151.191 - - [23/Dec/2018:19:57:18 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.166.151.191 - - [23/Dec/2018:19:57:18 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
58.246.221.61 - - [23/Dec/2018:19:57:22 +0800] "GET /job_door/to_company_door?&addDate=2018-11-11&zbType=0&werks= HTTP/1.1" 200 10343
58.246.221.61 - - [23/Dec/2018:19:57:22 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.246.221.61 - - [23/Dec/2018:19:57:22 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
58.246.221.163 - - [23/Dec/2018:19:57:25 +0800] "GET /job_door/to_company_door?&addDate=2018-11-12&zbType=0&werks= HTTP/1.1" 200 10343
58.246.221.163 - - [23/Dec/2018:19:57:26 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.246.221.163 - - [23/Dec/2018:19:57:26 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.166.151.197 - - [23/Dec/2018:19:57:29 +0800] "GET /sys_set/to_sys_set_index?&addDate=2018-11-12&zbType=0&werks= HTTP/1.1" 200 10343
223.166.151.197 - - [23/Dec/2018:19:57:29 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.246.221.162 - - [23/Dec/2018:19:57:30 +0800] "GET /sys_set/to_sys_set_default_company_name_logo_name HTTP/1.1" 200 10343
58.246.221.162 - - [23/Dec/2018:19:57:30 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
58.246.221.162 - - [23/Dec/2018:19:57:30 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.166.151.197 - - [23/Dec/2018:19:57:31 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
223.167.152.53 - - [23/Dec/2018:19:57:39 +0800] "GET /sys_set/to_reset_zb_score HTTP/1.1" 200 10343
223.167.152.53 - - [23/Dec/2018:19:57:40 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 200 92633
223.167.152.53 - - [23/Dec/2018:19:57:40 +0800] "GET /js/jquery.md5.js HTTP/1.1" 200 9516
112.65.187.133 - - [23/Dec/2018:20:58:13 +0800] "POST /sys_set/do_reset_zb_score HTTP/1.1" 200 78
192.169.2.171 - - [23/Dec/2018:21:29:14 +0800] "GET / HTTP/1.1" 200 10343
192.169.2.171 - - [23/Dec/2018:21:29:14 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:14 +0800] "GET /js/jquery.md5.js HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:14 +0800] "GET /css/login_style.css?13 HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:15 +0800] "GET /images/index_background_image.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:15 +0800] "GET /images/login/user-icon.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:15 +0800] "GET /images/login/pass-icon.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:15 +0800] "GET /images/transparence_background_image.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:15 +0800] "GET /favicon.ico HTTP/1.1" 200 10343
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET / HTTP/1.1" 200 10343
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /js/jquery-1.9.1.min.js HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /js/jquery.md5.js HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /css/login_style.css?13 HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /images/index_background_image.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /images/login/user-icon.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /images/login/pass-icon.png HTTP/1.1" 304 -
192.169.2.171 - - [23/Dec/2018:21:29:24 +0800] "GET /images/transparence_background_image.png HTTP/1.1" 304 -
115.214.182.65 - - [23/Dec/2018:22:44:17 +0800] "GET / HTTP/1.1" 200 10343
115.214.182.65 - - [23/Dec/2018:22:44:23 +0800] "POST /doLogin HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:22:44:23 +0800] "GET / HTTP/1.1" 200 950
115.214.182.65 - - [23/Dec/2018:22:44:23 +0800] "GET /top.jsp HTTP/1.1" 200 3176
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "GET /go_total_index HTTP/1.1" 200 27022
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /update_session_choose_option_direct_way HTTP/1.1" 200 191
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "GET /job_door/to_company_door?&addDate=2018-12-22&zbType=0&werks= HTTP/1.1" 200 33951
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /job_door/find_company_or_werks_score_rank HTTP/1.1" 200 856
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /ajax/entity/find_werks HTTP/1.1" 200 395
115.214.182.65 - - [23/Dec/2018:22:44:24 +0800] "POST /job_door/find_werks_trend HTTP/1.1" 200 346
115.214.182.65 - - [23/Dec/2018:22:44:26 +0800] "GET /job_door/to_werks_door?werks=1001&addDate=2018-12-22 HTTP/1.1" 200 31922
115.214.182.65 - - [23/Dec/2018:22:44:26 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:22:44:27 +0800] "GET /job_door/loadDeptScoreArr?werksCode=1001&addDate=2018-12-22 HTTP/1.1" 200 470
115.214.182.65 - - [23/Dec/2018:22:44:28 +0800] "GET /job_door/to_dept_door?zbType=2&werks=1001&addDate=2018-12-22 HTTP/1.1" 200 8893
115.214.182.65 - - [23/Dec/2018:22:44:29 +0800] "POST /update_back_button_url HTTP/1.1" 200 78
115.214.182.65 - - [23/Dec/2018:22:44:30 +0800] "POST /ajax/entity/find_zb_list HTTP/1.1" 200 1443
115.214.182.65 - - [23/Dec/2018:22:44:31 +0800] "GET /job_door/to_zb_detail_page_list?werksNum=1001&zbId=63&addDate=2018-12-22 HTTP/1.1" 200 13726
115.214.182.65 - - [23/Dec/2018:22:44:31 +0800] "GET /job_door/load_dimension_name?zbId=63 HTTP/1.1" 200 690
115.214.182.65 - - [23/Dec/2018:22:44:31 +0800] "GET /job_door/zb_detail_table_header?zbId=63 HTTP/1.1" 200 1246
115.214.182.65 - - [23/Dec/2018:22:44:33 +0800] "GET /job_door/load_dimension_value?dimensionId=103 HTTP/1.1" 200 1753
115.214.182.65 - - [23/Dec/2018:22:44:35 +0800] "GET /job_door/zb_detail_page_list?size=10&current=0&werkCode=1001&zbId=63&addDate=2018-12-22&dimensionId=103&dimensionValue=&isYuQi=false&_=1545576238412 HTTP/1.1" 200 6971
115.214.182.65 - - [23/Dec/2018:22:44:37 +0800] "GET /images/icon/back_black.png HTTP/1.1" 200 1123


6.manager.日志.log
这个估计也是manager项目专有的日志文件,看不出有什么重要的信息
我的tomcat一般也是空的内容,给大家一个参考。
7.tomcat7-stderr.日期.log
这个是log4j的错误日志,因此在程序中要合理的捕捉异常。
例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
2018-12-21 18:56:17 Commons Daemon procrun stderr initialized
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server version: Apache Tomcat/7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server built: Nov 9 2018 11:07:44 UTC
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server number: 7.0.92.0
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Name: Windows NT (unknown)
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Version: 10.0
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Architecture: amd64
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Java Home: D:\Java\jdk1.8.0\jre
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Version: 1.8.0_112-b15
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Vendor: Oracle Corporation
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_BASE: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_HOME: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.home=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.base=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dignore.endorsed.dirs=D:\server\apache-tomcat-7.0.92\endorsed
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.io.tmpdir=D:\server\apache-tomcat-7.0.92\temp
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.config.file=D:\server\apache-tomcat-7.0.92\conf\logging.properties
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: exit
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: abort
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xms128m
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xmx256m
十二月 21, 2018 6:56:18 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: Loaded APR based Apache Tomcat Native library 1.2.18 using APR version 1.6.5.
十二月 21, 2018 6:56:18 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
十二月 21, 2018 6:56:18 下午 org.apache.catalina.core.AprLifecycleListener initializeSSL
信息: OpenSSL successfully initialized (OpenSSL 1.1.1 11 Sep 2018)
十二月 21, 2018 6:56:18 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 6:56:18 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 575 ms
十二月 21, 2018 6:56:18 下午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Catalina
十二月 21, 2018 6:56:18 下午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.92
十二月 21, 2018 6:56:18 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deploying web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core_rt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt_rt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/permittedTaglibs is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/scriptfree is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql_rt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined
十二月 21, 2018 6:56:23 下午 org.apache.catalina.startup.TldConfig execute
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
十二月 21, 2018 6:56:30 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deployment of web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war has finished in 11,265 ms
十二月 21, 2018 6:56:30 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 6:56:30 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 6:56:30 下午 org.apache.catalina.startup.Catalina start
信息: Server startup in 11387 ms
十二月 21, 2018 7:16:46 下午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 7:16:46 下午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 7:16:46 下午 org.apache.catalina.core.StandardService stopInternal
信息: Stopping service Catalina
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.alibaba.druid.proxy.DruidDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-1] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-2] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-3] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-4] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-5] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 7:16:46 下午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 7:16:46 下午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["ajp-apr-8009"]

2018-12-21 19:16:57 Commons Daemon procrun stderr initialized
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server version: Apache Tomcat/7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server built: Nov 9 2018 11:07:44 UTC
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server number: 7.0.92.0
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Name: Windows NT (unknown)
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Version: 10.0
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Architecture: amd64
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Java Home: D:\Java\jdk1.8.0\jre
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Version: 1.8.0_112-b15
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Vendor: Oracle Corporation
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_BASE: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_HOME: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.home=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.base=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dignore.endorsed.dirs=D:\server\apache-tomcat-7.0.92\endorsed
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.io.tmpdir=D:\server\apache-tomcat-7.0.92\temp
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.config.file=D:\server\apache-tomcat-7.0.92\conf\logging.properties
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: exit
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: abort
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xms128m
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xmx256m
十二月 21, 2018 7:16:58 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: Loaded APR based Apache Tomcat Native library 1.2.18 using APR version 1.6.5.
十二月 21, 2018 7:16:58 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
十二月 21, 2018 7:16:58 下午 org.apache.catalina.core.AprLifecycleListener initializeSSL
信息: OpenSSL successfully initialized (OpenSSL 1.1.1 11 Sep 2018)
十二月 21, 2018 7:16:58 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 7:16:58 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 657 ms
十二月 21, 2018 7:16:58 下午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Catalina
十二月 21, 2018 7:16:58 下午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.92
十二月 21, 2018 7:16:58 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deploying web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core_rt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt_rt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/permittedTaglibs is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/scriptfree is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql_rt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined
十二月 21, 2018 7:17:03 下午 org.apache.catalina.startup.TldConfig execute
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
十二月 21, 2018 7:17:09 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deployment of web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war has finished in 10,908 ms
十二月 21, 2018 7:17:09 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 7:17:09 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 7:17:09 下午 org.apache.catalina.startup.Catalina start
信息: Server startup in 10994 ms
十二月 21, 2018 8:10:29 下午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 8:10:29 下午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 8:10:29 下午 org.apache.catalina.core.StandardService stopInternal
信息: Stopping service Catalina
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.alibaba.druid.proxy.DruidDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-1] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-2] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-3] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-4] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-5] but has failed to stop it. This is very likely to create a memory leak.
十二月 21, 2018 8:10:29 下午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 8:10:30 下午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["ajp-apr-8009"]

2018-12-21 20:11:36 Commons Daemon procrun stderr initialized
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server version: Apache Tomcat/7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server built: Nov 9 2018 11:07:44 UTC
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Server number: 7.0.92.0
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Name: Windows NT (unknown)
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: OS Version: 10.0
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Architecture: amd64
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Java Home: D:\Java\jdk1.8.0\jre
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Version: 1.8.0_112-b15
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: JVM Vendor: Oracle Corporation
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_BASE: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: CATALINA_HOME: D:\server\apache-tomcat-7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.home=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dcatalina.base=D:\server\apache-tomcat-7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Dignore.endorsed.dirs=D:\server\apache-tomcat-7.0.92\endorsed
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.io.tmpdir=D:\server\apache-tomcat-7.0.92\temp
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Djava.util.logging.config.file=D:\server\apache-tomcat-7.0.92\conf\logging.properties
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: exit
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: abort
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xms128m
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.VersionLoggerListener log
信息: Command line argument: -Xmx256m
十二月 21, 2018 8:11:37 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: Loaded APR based Apache Tomcat Native library 1.2.18 using APR version 1.6.5.
十二月 21, 2018 8:11:37 下午 org.apache.catalina.core.AprLifecycleListener lifecycleEvent
信息: APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
十二月 21, 2018 8:11:37 下午 org.apache.catalina.core.AprLifecycleListener initializeSSL
信息: OpenSSL successfully initialized (OpenSSL 1.1.1 11 Sep 2018)
十二月 21, 2018 8:11:37 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 8:11:37 下午 org.apache.coyote.AbstractProtocol init
信息: Initializing ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.Catalina load
信息: Initialization processed in 580 ms
十二月 21, 2018 8:11:37 下午 org.apache.catalina.core.StandardService startInternal
信息: Starting service Catalina
十二月 21, 2018 8:11:37 下午 org.apache.catalina.core.StandardEngine startInternal
信息: Starting Servlet Engine: Apache Tomcat/7.0.92
十二月 21, 2018 8:11:37 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deploying web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core_rt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/core is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/core is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt_rt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/fmt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/fmt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/functions is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/permittedTaglibs is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://jakarta.apache.org/taglibs/standard/scriptfree is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql_rt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/sql is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/sql is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml_rt is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jstl/xml is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TaglibUriRule body
信息: TLD skipped. URI: http://java.sun.com/jsp/jstl/xml is already defined
十二月 21, 2018 8:11:42 下午 org.apache.catalina.startup.TldConfig execute
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
十二月 21, 2018 8:11:47 下午 org.apache.catalina.startup.HostConfig deployWAR
信息: Deployment of web application archive D:\server\apache-tomcat-7.0.92\webapps\ROOT.war has finished in 9,877 ms
十二月 21, 2018 8:11:47 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["http-apr-8360"]
十二月 21, 2018 8:11:47 下午 org.apache.coyote.AbstractProtocol start
信息: Starting ProtocolHandler ["ajp-apr-8009"]
十二月 21, 2018 8:11:47 下午 org.apache.catalina.startup.Catalina start
信息: Server startup in 9949 ms
十二月 22, 2018 12:08:12 上午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["http-apr-8360"]
十二月 22, 2018 12:08:12 上午 org.apache.coyote.AbstractProtocol pause
信息: Pausing ProtocolHandler ["ajp-apr-8009"]
十二月 22, 2018 12:08:12 上午 org.apache.catalina.core.StandardService stopInternal
信息: Stopping service Catalina
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.alibaba.druid.proxy.DruidDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesJdbc
严重: The web application [] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-1] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-2] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-3] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [scheduler_Worker-5] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase clearReferencesThreads
严重: The web application [] appears to have started a thread named [JCoTimeoutChecker] but has failed to stop it. This is very likely to create a memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.catalina.loader.WebappClassLoaderBase checkThreadLocalMapForLeaks
严重: The web application [] created a ThreadLocal with key of type [java.lang.ThreadLocal] (value [java.lang.ThreadLocal@5fc6d2a9]) and a value of type [com.sap.conn.jco.ext.DefaultSessionReferenceProvider.SessionReference] (value [Session Reference Client-18-1 [stateless]]) but failed to remove it when the web application was stopped. Threads are going to be renewed over time to try and avoid a probable memory leak.
十二月 22, 2018 12:08:12 上午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["http-apr-8360"]
十二月 22, 2018 12:08:12 上午 org.apache.coyote.AbstractProtocol stop
信息: Stopping ProtocolHandler ["ajp-apr-8009"]


8.tomcat7-stdout.日期.log (类似于eclipse的控制台的信息)
这个是程序中的System语句打印的日志(包括系统抛出的异常),也终于明白了为什么一再强调不能用打印语句进行系统调试
例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2018-12-21 18:56:17 Commons Daemon procrun stdout initialized

2018-12-21 19:16:57 Commons Daemon procrun stdout initialized

2018-12-21 20:11:36 Commons Daemon procrun stdout initialized
[2018-12-21 20:13:00:021] [ERROR] [method:com.fcg.common.LoadDataForSap.saveSapDate(LoadDataForSap.java:44)]
拉取SAP数据开始

[2018-12-21 20:13:14:840] [ERROR] [method:com.fcg.common.LoadDataForSap.erpDataSync(LoadDataForSap.java:220)]
ZERP360_HZB_1001同步成功

[2018-12-21 20:13:14:896] [ERROR] [method:com.fcg.common.LoadDataForSap.erpDataSync(LoadDataForSap.java:220)]
ZERP360_HZB_1008同步成功
。。。