質問編集履歴

1

logの記載をしました

2018/10/04 07:27

投稿

nekomodoki
nekomodoki

スコア8

test CHANGED
File without changes
test CHANGED
@@ -158,6 +158,66 @@
158
158
 
159
159
  ```
160
160
 
161
+ ### log
162
+
163
+ ```
164
+
165
+ 2018-10-03 17:17:50.625 INFO 9660 --- [ main] com.test.SampleTestJspApplication : Starting SampleTestJspApplication v0.0.1-SNAPSHOT on ****-PC with PID **** (C:\work\SampleTest-jsp-0.0.1-SNAPSHOT.jar started by ****** in c:\work)
166
+
167
+ 2018-10-03 17:17:50.628 INFO 9660 --- [ main] com.test.SampleTestJspApplication : No active profile set, falling back to default profiles: default
168
+
169
+ 2018-10-03 17:17:50.683 INFO 9660 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@59eb14: startup date [Wed Oct 03 17:17:50 JST 2018]; root of context hierarchy
170
+
171
+ 2018-10-03 17:17:51.980 INFO 9660 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 80 (http)
172
+
173
+ 2018-10-03 17:17:52.010 INFO 9660 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
174
+
175
+ 2018-10-03 17:17:52.010 INFO 9660 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.34
176
+
177
+ 2018-10-03 17:17:52.409 INFO 9660 --- [ost-startStop-1] org.apache.jasper.servlet.TldScanner : 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.
178
+
179
+ 2018-10-03 17:17:52.465 INFO 9660 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
180
+
181
+ 2018-10-03 17:17:52.465 INFO 9660 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1783 ms
182
+
183
+ 2018-10-03 17:17:52.580 INFO 9660 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
184
+
185
+ 2018-10-03 17:17:52.583 INFO 9660 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
186
+
187
+ 2018-10-03 17:17:52.583 INFO 9660 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
188
+
189
+ 2018-10-03 17:17:52.583 INFO 9660 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'httpPutFormContentFilter' to: [/*]
190
+
191
+ 2018-10-03 17:17:52.583 INFO 9660 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'requestContextFilter' to: [/*]
192
+
193
+ 2018-10-03 17:17:52.863 INFO 9660 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@59eb14: startup date [Wed Oct 03 17:17:50 JST 2018]; root of context hierarchy
194
+
195
+ 2018-10-03 17:17:52.941 INFO 9660 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[GET]}" onto public org.springframework.web.servlet.ModelAndView com.test.controller.TestController.test(org.springframework.web.servlet.ModelAndView,java.lang.String,java.lang.String)
196
+
197
+ 2018-10-03 17:17:52.944 INFO 9660 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
198
+
199
+ 2018-10-03 17:17:52.944 INFO 9660 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
200
+
201
+ 2018-10-03 17:17:52.972 INFO 9660 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
202
+
203
+ 2018-10-03 17:17:52.972 INFO 9660 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
204
+
205
+ 2018-10-03 17:17:53.003 INFO 9660 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
206
+
207
+ 2018-10-03 17:17:53.122 INFO 9660 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
208
+
209
+ 2018-10-03 17:17:53.202 INFO 9660 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 80 (http)
210
+
211
+ 2018-10-03 17:17:53.206 INFO 9660 --- [ main] com.test.SampleTestJspApplication : Started SampleTestJspApplication in 2.94 seconds (JVM running for 3.572)
212
+
213
+ 2018-10-03 17:17:56.433 INFO 9660 --- [p-nio-80-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
214
+
215
+ 2018-10-03 17:17:56.433 INFO 9660 --- [p-nio-80-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
216
+
217
+ 2018-10-03 17:17:56.447 INFO 9660 --- [p-nio-80-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 14 ms
218
+
219
+ ```
220
+
161
221
 
162
222
 
163
223
  ### 補足情報(FW/ツールのバージョンなど)