-
Notifications
You must be signed in to change notification settings - Fork 0
/
qeats_logfile.log.2019-06-04.011913646193132.tmp
3687 lines (3657 loc) · 838 KB
/
qeats_logfile.log.2019-06-04.011913646193132.tmp
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2019-06-04 11:49:11.090 INFO 2743 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 2743 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 11:49:11.108 INFO 2743 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 11:49:11.360 INFO 2743 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 11:49:11.361 INFO 2743 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 11:49:14.649 INFO 2743 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 11:49:14.706 INFO 2743 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 48ms. Found 0 repository interfaces.
2019-06-04 11:49:17.121 INFO 2743 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 11:49:17.246 INFO 2743 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 11:49:17.246 INFO 2743 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 11:49:17.267 INFO 2743 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 11:49:17.268 INFO 2743 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 11:49:17.270 INFO 2743 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 11:49:17.276 INFO 2743 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 11:49:17.585 INFO 2743 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 11:49:17.585 DEBUG 2743 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 11:49:17.586 INFO 2743 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 6219 ms
2019-06-04 11:49:19.000 INFO 2743 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 11:49:19.193 INFO 2743 --- [cluster-ClusterId{value='5cf60d66b91c3e0ab7f228f7', description='null'}-localhost:27017] org.mongodb.driver.cluster : Exception in monitor thread while connecting to server localhost:27017
com.mongodb.MongoSocketOpenException: Exception opening socket
at com.mongodb.internal.connection.SocketStream.open(SocketStream.java:67) ~[mongodb-driver-core-3.8.2.jar:na]
at com.mongodb.internal.connection.InternalStreamConnection.open(InternalStreamConnection.java:126) ~[mongodb-driver-core-3.8.2.jar:na]
at com.mongodb.internal.connection.DefaultServerMonitor$ServerMonitorRunnable.run(DefaultServerMonitor.java:117) ~[mongodb-driver-core-3.8.2.jar:na]
at java.lang.Thread.run(Thread.java:748) [na:1.8.0_212]
Caused by: java.net.ConnectException: Connection refused (Connection refused)
at java.net.PlainSocketImpl.socketConnect(Native Method) ~[na:1.8.0_212]
at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350) ~[na:1.8.0_212]
at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206) ~[na:1.8.0_212]
at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188) ~[na:1.8.0_212]
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392) ~[na:1.8.0_212]
at java.net.Socket.connect(Socket.java:589) ~[na:1.8.0_212]
at com.mongodb.internal.connection.SocketStreamHelper.initialize(SocketStreamHelper.java:64) ~[mongodb-driver-core-3.8.2.jar:na]
at com.mongodb.internal.connection.SocketStream.open(SocketStream.java:62) ~[mongodb-driver-core-3.8.2.jar:na]
... 3 common frames omitted
2019-06-04 11:49:21.842 TRACE 2743 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 11:49:21.867 TRACE 2743 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
{ /swagger-resources/configuration/security}: securityConfiguration()
2019-06-04 11:49:21.882 TRACE 2743 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 11:49:21.920 DEBUG 2743 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 11:49:22.313 INFO 2743 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 11:49:22.636 INFO 2743 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 11:49:22.793 TRACE 2743 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 11:49:22.794 DEBUG 2743 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 11:49:23.155 INFO 2743 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 11:49:23.216 INFO 2743 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 11:49:23.228 DEBUG 2743 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 11:49:23.343 DEBUG 2743 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 11:49:23.356 TRACE 2743 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 11:49:23.357 TRACE 2743 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 11:49:23.357 DEBUG 2743 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 11:49:23.375 DEBUG 2743 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 11:49:23.987 INFO 2743 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 11:49:24.041 INFO 2743 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 11:49:24.101 INFO 2743 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 11:49:24.693 INFO 2743 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 11:49:24.701 INFO 2743 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 11:49:24.706 INFO 2743 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 11:49:24.967 INFO 2743 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 11:49:24.986 INFO 2743 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 15.272 seconds (JVM running for 16.337)
2019-06-04 11:49:25.054 INFO 2743 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 11:59:03.255 INFO 2743 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 12:48:21.769 INFO 22362 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 22362 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 12:48:21.786 INFO 22362 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 12:48:22.083 INFO 22362 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 12:48:22.111 INFO 22362 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 12:48:25.307 INFO 22362 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 12:48:25.345 INFO 22362 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 29ms. Found 0 repository interfaces.
2019-06-04 12:48:26.846 INFO 22362 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 12:48:26.918 INFO 22362 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 12:48:26.919 INFO 22362 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 12:48:26.965 INFO 22362 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 12:48:26.966 INFO 22362 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 12:48:26.967 INFO 22362 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 12:48:26.972 INFO 22362 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 12:48:27.341 INFO 22362 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 12:48:27.341 DEBUG 22362 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 12:48:27.342 INFO 22362 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 5230 ms
2019-06-04 12:48:28.364 INFO 22362 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 12:48:28.568 INFO 22362 --- [cluster-ClusterId{value='5cf61b44b91c3e575aa6f804', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:5}] to localhost:27017
2019-06-04 12:48:28.582 INFO 22362 --- [cluster-ClusterId{value='5cf61b44b91c3e575aa6f804', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=7409919}
2019-06-04 12:48:29.798 TRACE 22362 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 12:48:29.812 TRACE 22362 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 12:48:29.818 TRACE 22362 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 12:48:29.824 DEBUG 22362 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 12:48:29.906 INFO 22362 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 12:48:30.153 INFO 22362 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 12:48:30.346 TRACE 22362 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 12:48:30.346 DEBUG 22362 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 12:48:30.631 INFO 22362 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 12:48:30.703 INFO 22362 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 12:48:30.724 DEBUG 22362 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 12:48:30.816 DEBUG 22362 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 12:48:30.836 TRACE 22362 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 12:48:30.837 TRACE 22362 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 12:48:30.837 DEBUG 22362 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 12:48:30.854 DEBUG 22362 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 12:48:31.503 INFO 22362 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 12:48:31.544 INFO 22362 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 12:48:31.598 INFO 22362 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 12:48:32.172 INFO 22362 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 12:48:32.192 INFO 22362 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 12:48:32.219 INFO 22362 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 12:48:32.616 INFO 22362 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 12:48:32.630 INFO 22362 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 12.004 seconds (JVM running for 13.45)
2019-06-04 12:48:32.706 INFO 22362 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 12:57:19.552 INFO 22362 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 12:57:33.377 INFO 24003 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 24003 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 12:57:33.388 INFO 24003 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 12:57:33.657 INFO 24003 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 12:57:33.695 INFO 24003 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 12:57:37.749 INFO 24003 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 12:57:37.792 INFO 24003 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 32ms. Found 0 repository interfaces.
2019-06-04 12:57:40.750 INFO 24003 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 12:57:40.876 INFO 24003 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 12:57:40.885 INFO 24003 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 12:57:40.919 INFO 24003 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 12:57:40.920 INFO 24003 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 12:57:40.920 INFO 24003 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 12:57:40.925 INFO 24003 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 12:57:41.226 INFO 24003 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 12:57:41.227 DEBUG 24003 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 12:57:41.234 INFO 24003 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 7538 ms
2019-06-04 12:57:42.750 INFO 24003 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 12:57:43.076 INFO 24003 --- [cluster-ClusterId{value='5cf61d6eb91c3e5dc3a663ed', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:6}] to localhost:27017
2019-06-04 12:57:43.123 INFO 24003 --- [cluster-ClusterId{value='5cf61d6eb91c3e5dc3a663ed', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=27563385}
2019-06-04 12:57:45.484 TRACE 24003 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 12:57:45.508 TRACE 24003 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 12:57:45.525 TRACE 24003 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 12:57:45.549 DEBUG 24003 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 12:57:45.800 INFO 24003 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 12:57:46.042 INFO 24003 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 12:57:46.261 TRACE 24003 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 12:57:46.262 DEBUG 24003 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 12:57:46.687 INFO 24003 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 12:57:46.827 INFO 24003 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 12:57:46.844 DEBUG 24003 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 12:57:47.083 DEBUG 24003 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 12:57:47.134 TRACE 24003 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 12:57:47.135 TRACE 24003 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 12:57:47.136 DEBUG 24003 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 12:57:47.190 DEBUG 24003 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 12:57:48.153 INFO 24003 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 12:57:48.244 INFO 24003 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 12:57:48.331 INFO 24003 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 12:57:48.889 INFO 24003 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 12:57:48.902 INFO 24003 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 12:57:48.906 INFO 24003 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 12:57:49.335 INFO 24003 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 12:57:49.356 INFO 24003 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 17.51 seconds (JVM running for 19.091)
2019-06-04 12:57:49.422 INFO 24003 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:02:16.359 INFO 24003 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:02:27.795 INFO 24933 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 24933 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:02:27.815 INFO 24933 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:02:28.005 INFO 24933 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:02:28.007 INFO 24933 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:02:32.298 INFO 24933 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:02:32.369 INFO 24933 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 59ms. Found 0 repository interfaces.
2019-06-04 13:02:34.590 INFO 24933 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:02:34.675 INFO 24933 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:02:34.680 INFO 24933 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:02:34.715 INFO 24933 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:02:34.727 INFO 24933 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:02:34.728 INFO 24933 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:02:34.733 INFO 24933 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:02:34.869 INFO 24933 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:02:34.878 DEBUG 24933 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:02:34.878 INFO 24933 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 6870 ms
2019-06-04 13:02:35.961 INFO 24933 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:02:36.188 INFO 24933 --- [cluster-ClusterId{value='5cf61e93b91c3e616517d412', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:7}] to localhost:27017
2019-06-04 13:02:36.231 INFO 24933 --- [cluster-ClusterId{value='5cf61e93b91c3e616517d412', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=40220899}
2019-06-04 13:02:37.283 TRACE 24933 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 13:02:37.300 TRACE 24933 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 13:02:37.313 TRACE 24933 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:02:37.326 DEBUG 24933 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:02:37.450 INFO 24933 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:02:37.574 INFO 24933 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:02:37.675 TRACE 24933 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:02:37.676 DEBUG 24933 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:02:37.840 INFO 24933 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:02:37.932 INFO 24933 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:02:37.952 DEBUG 24933 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:02:38.073 DEBUG 24933 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:02:38.095 TRACE 24933 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:02:38.099 TRACE 24933 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:02:38.100 DEBUG 24933 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:02:38.122 DEBUG 24933 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:02:38.680 INFO 24933 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:02:38.718 INFO 24933 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:02:38.769 INFO 24933 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:02:39.226 INFO 24933 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:02:39.234 INFO 24933 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:02:39.240 INFO 24933 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:02:39.394 INFO 24933 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:02:39.414 INFO 24933 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 13.155 seconds (JVM running for 14.855)
2019-06-04 13:02:39.448 INFO 24933 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:06:42.176 INFO 24933 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:06:48.496 DEBUG 25718 --- [background-preinit] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL
2019-06-04 13:06:49.079 INFO 25718 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 25718 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:06:49.088 INFO 25718 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:06:49.362 INFO 25718 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:06:49.363 INFO 25718 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:06:54.241 INFO 25718 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:06:54.383 INFO 25718 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 119ms. Found 0 repository interfaces.
2019-06-04 13:06:57.037 INFO 25718 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:06:57.205 INFO 25718 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:06:57.207 INFO 25718 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:06:57.257 INFO 25718 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:06:57.258 INFO 25718 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:06:57.260 INFO 25718 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:06:57.273 INFO 25718 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:06:57.673 INFO 25718 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:06:57.673 DEBUG 25718 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:06:57.673 INFO 25718 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 8310 ms
2019-06-04 13:06:58.956 INFO 25718 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:06:59.164 INFO 25718 --- [cluster-ClusterId{value='5cf61f9ab91c3e6476c19627', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:8}] to localhost:27017
2019-06-04 13:06:59.205 INFO 25718 --- [cluster-ClusterId{value='5cf61f9ab91c3e6476c19627', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=37833950}
2019-06-04 13:07:00.559 TRACE 25718 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 13:07:00.570 TRACE 25718 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 13:07:00.585 TRACE 25718 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:07:00.593 DEBUG 25718 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:07:00.811 INFO 25718 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:07:01.190 INFO 25718 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:07:01.739 TRACE 25718 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:07:01.742 DEBUG 25718 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:07:02.108 INFO 25718 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:07:02.241 INFO 25718 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:07:02.261 DEBUG 25718 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:07:02.411 DEBUG 25718 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:07:02.453 TRACE 25718 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:07:02.454 TRACE 25718 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:07:02.454 DEBUG 25718 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:07:02.502 DEBUG 25718 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:07:03.475 INFO 25718 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:07:03.557 INFO 25718 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:07:03.726 INFO 25718 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:07:04.442 INFO 25718 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:07:04.448 INFO 25718 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:07:04.450 INFO 25718 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:07:04.875 INFO 25718 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:07:04.883 INFO 25718 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 17.056 seconds (JVM running for 17.896)
2019-06-04 13:07:04.923 INFO 25718 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:10:44.256 INFO 25718 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:10:54.072 INFO 25882 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 25882 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:10:54.077 INFO 25882 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:10:54.192 INFO 25882 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:10:54.197 INFO 25882 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:10:56.902 INFO 25882 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:10:56.945 INFO 25882 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 27ms. Found 0 repository interfaces.
2019-06-04 13:10:58.498 INFO 25882 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:10:58.560 INFO 25882 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:10:58.562 INFO 25882 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:10:58.584 INFO 25882 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:10:58.585 INFO 25882 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:10:58.585 INFO 25882 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:10:58.591 INFO 25882 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:10:58.726 INFO 25882 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:10:58.728 DEBUG 25882 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:10:58.737 INFO 25882 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4540 ms
2019-06-04 13:10:59.938 INFO 25882 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:11:00.186 INFO 25882 --- [cluster-ClusterId{value='5cf6208bb91c3e651aef68c1', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:9}] to localhost:27017
2019-06-04 13:11:00.203 INFO 25882 --- [cluster-ClusterId{value='5cf6208bb91c3e651aef68c1', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=8683445}
2019-06-04 13:11:01.282 TRACE 25882 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
{GET /qeats/v1/all}: getSomething()
2019-06-04 13:11:01.293 TRACE 25882 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 13:11:01.303 TRACE 25882 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:11:01.317 DEBUG 25882 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 7 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:11:01.456 INFO 25882 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:11:01.736 INFO 25882 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:11:01.828 TRACE 25882 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:11:01.829 DEBUG 25882 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:11:02.080 INFO 25882 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:11:02.117 INFO 25882 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:11:02.134 DEBUG 25882 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:11:02.193 DEBUG 25882 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:11:02.203 TRACE 25882 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:11:02.204 TRACE 25882 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:11:02.204 DEBUG 25882 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:11:02.224 DEBUG 25882 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:11:02.737 INFO 25882 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:11:02.775 INFO 25882 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:11:02.825 INFO 25882 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:11:03.211 INFO 25882 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:11:03.218 INFO 25882 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:11:03.223 INFO 25882 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:11:03.380 INFO 25882 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:11:03.387 INFO 25882 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 10.37 seconds (JVM running for 11.151)
2019-06-04 13:11:03.413 INFO 25882 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:13:58.109 INFO 25882 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:15:06.380 INFO 26169 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 26169 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:15:06.393 INFO 26169 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:15:06.632 INFO 26169 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:15:06.633 INFO 26169 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:15:09.672 INFO 26169 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:15:09.706 INFO 26169 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 22ms. Found 0 repository interfaces.
2019-06-04 13:15:11.194 INFO 26169 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:15:11.242 INFO 26169 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:15:11.243 INFO 26169 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:15:11.271 INFO 26169 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:15:11.272 INFO 26169 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:15:11.272 INFO 26169 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:15:11.277 INFO 26169 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:15:11.433 INFO 26169 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:15:11.433 DEBUG 26169 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:15:11.434 INFO 26169 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4799 ms
2019-06-04 13:15:13.230 INFO 26169 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:15:13.477 INFO 26169 --- [cluster-ClusterId{value='5cf62189b91c3e6639ff4d71', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:10}] to localhost:27017
2019-06-04 13:15:13.506 INFO 26169 --- [cluster-ClusterId{value='5cf62189b91c3e6639ff4d71', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=12582885}
2019-06-04 13:15:16.280 TRACE 26169 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
{GET /qeats/v1/all}: getSomething()
2019-06-04 13:15:16.300 TRACE 26169 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 13:15:16.313 TRACE 26169 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:15:16.338 DEBUG 26169 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 7 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:15:16.520 INFO 26169 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:15:16.740 INFO 26169 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:15:16.885 TRACE 26169 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:15:16.886 DEBUG 26169 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:15:17.224 INFO 26169 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:15:17.329 INFO 26169 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:15:17.347 DEBUG 26169 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:15:17.449 DEBUG 26169 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:15:17.471 TRACE 26169 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:15:17.472 TRACE 26169 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:15:17.472 DEBUG 26169 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:15:17.490 DEBUG 26169 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:15:18.266 INFO 26169 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:15:18.301 INFO 26169 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:15:18.349 INFO 26169 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:15:18.672 INFO 26169 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:15:18.679 INFO 26169 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:15:18.685 INFO 26169 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:15:18.845 INFO 26169 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:15:18.851 INFO 26169 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 13.488 seconds (JVM running for 14.632)
2019-06-04 13:15:18.877 INFO 26169 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:18:26.401 INFO 26169 --- [http-nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-06-04 13:18:26.402 INFO 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-06-04 13:18:26.403 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@74e744c7
2019-06-04 13:18:26.414 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
2019-06-04 13:18:26.416 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
2019-06-04 13:18:26.425 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
2019-06-04 13:18:26.439 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
2019-06-04 13:18:26.439 DEBUG 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
2019-06-04 13:18:26.439 INFO 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 36 ms
2019-06-04 13:18:26.467 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : GET "/", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:18:26.511 TRACE 26169 --- [http-nio-8081-exec-1] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to HandlerExecutionChain with [ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]] and 4 interceptors
2019-06-04 13:18:26.523 DEBUG 26169 --- [http-nio-8081-exec-1] o.s.w.s.r.ResourceHttpRequestHandler : Resource not found
2019-06-04 13:18:26.524 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:18:26.524 DEBUG 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed 404 NOT_FOUND, headers={}
2019-06-04 13:18:26.544 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : "ERROR" dispatch for GET "/error", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:18:26.562 TRACE 26169 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 matching mappings: [{ /error, produces [text/html]}, { /error}]
2019-06-04 13:18:26.563 TRACE 26169 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2019-06-04 13:18:26.580 TRACE 26169 --- [http-nio-8081-exec-1] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [org.apache.catalina.core.ApplicationHttpRequest@5f6f420f, org.apache.catalina.connector.ResponseFacade@6884eb60]
2019-06-04 13:18:26.631 DEBUG 26169 --- [http-nio-8081-exec-1] o.s.w.s.v.ContentNegotiatingViewResolver : Selected 'text/html' given [text/html, text/html;q=0.8]
2019-06-04 13:18:26.632 TRACE 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Rendering view [org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$StaticView@1c8a5dda]
2019-06-04 13:18:26.655 DEBUG 26169 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Exiting from "ERROR" dispatch, status 404, headers={}
2019-06-04 13:18:26.719 TRACE 26169 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : GET "/favicon.ico", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:18:26.720 TRACE 26169 --- [http-nio-8081-exec-2] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped to HandlerExecutionChain with [ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]] and 1 interceptors
2019-06-04 13:18:26.848 TRACE 26169 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:18:26.848 DEBUG 26169 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 13:18:54.073 TRACE 26169 --- [http-nio-8081-exec-3] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/all", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:18:54.085 TRACE 26169 --- [http-nio-8081-exec-3] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<java.lang.String> com.crio.qeats.controller.RestaurantController.getSomething()
2019-06-04 13:18:54.088 TRACE 26169 --- [http-nio-8081-exec-3] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: []
2019-06-04 13:18:54.089 INFO 26169 --- [http-nio-8081-exec-3] c.c.q.controller.RestaurantController : getSomething called
2019-06-04 13:18:54.175 DEBUG 26169 --- [http-nio-8081-exec-3] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'text/plain', given [*/*] and supported [text/plain, */*, text/plain, */*, application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:18:54.196 TRACE 26169 --- [http-nio-8081-exec-3] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Writing ["Hello"]
2019-06-04 13:18:54.199 TRACE 26169 --- [http-nio-8081-exec-3] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:18:54.200 DEBUG 26169 --- [http-nio-8081-exec-3] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 13:19:02.401 TRACE 26169 --- [http-nio-8081-exec-4] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants", parameters={}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:19:02.410 TRACE 26169 --- [http-nio-8081-exec-4] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 13:19:02.431 TRACE 26169 --- [http-nio-8081-exec-4] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=0.0, longitude=0.0)]
2019-06-04 13:19:02.437 INFO 26169 --- [http-nio-8081-exec-4] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=0.0, longitude=0.0)
2019-06-04 13:19:02.442 INFO 26169 --- [http-nio-8081-exec-4] c.c.q.controller.RestaurantController : getRestaurants returned null
2019-06-04 13:19:02.514 DEBUG 26169 --- [http-nio-8081-exec-4] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:19:02.514 DEBUG 26169 --- [http-nio-8081-exec-4] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Nothing to write: null body
2019-06-04 13:19:02.515 TRACE 26169 --- [http-nio-8081-exec-4] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:19:02.515 DEBUG 26169 --- [http-nio-8081-exec-4] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={}
2019-06-04 13:19:17.066 TRACE 26169 --- [http-nio-8081-exec-5] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:19:17.079 TRACE 26169 --- [http-nio-8081-exec-5] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 13:19:17.094 TRACE 26169 --- [http-nio-8081-exec-5] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 13:19:17.097 INFO 26169 --- [http-nio-8081-exec-5] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 13:19:17.098 INFO 26169 --- [http-nio-8081-exec-5] c.c.q.controller.RestaurantController : getRestaurants returned null
2019-06-04 13:19:17.112 DEBUG 26169 --- [http-nio-8081-exec-5] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:19:17.113 DEBUG 26169 --- [http-nio-8081-exec-5] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Nothing to write: null body
2019-06-04 13:19:17.113 TRACE 26169 --- [http-nio-8081-exec-5] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:19:17.113 DEBUG 26169 --- [http-nio-8081-exec-5] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={}
2019-06-04 13:28:47.272 INFO 26169 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:28:55.409 INFO 26839 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 26839 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:28:55.421 INFO 26839 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:28:55.769 INFO 26839 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:28:55.771 INFO 26839 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:28:59.059 INFO 26839 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:28:59.102 INFO 26839 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 34ms. Found 0 repository interfaces.
2019-06-04 13:29:00.935 INFO 26839 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:29:01.069 INFO 26839 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:29:01.070 INFO 26839 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:29:01.092 INFO 26839 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:29:01.093 INFO 26839 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:29:01.094 INFO 26839 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:29:01.099 INFO 26839 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:29:01.279 INFO 26839 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:29:01.283 DEBUG 26839 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:29:01.284 INFO 26839 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 5512 ms
2019-06-04 13:29:02.643 INFO 26839 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:29:02.901 INFO 26839 --- [cluster-ClusterId{value='5cf624c6b91c3e68d71c14fd', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:11}] to localhost:27017
2019-06-04 13:29:02.934 INFO 26839 --- [cluster-ClusterId{value='5cf624c6b91c3e68d71c14fd', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=5871048}
2019-06-04 13:29:04.574 TRACE 26839 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 13:29:04.589 TRACE 26839 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 13:29:04.602 TRACE 26839 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:29:04.624 DEBUG 26839 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:29:04.877 INFO 26839 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:29:05.175 INFO 26839 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:29:05.276 TRACE 26839 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:29:05.277 DEBUG 26839 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:29:05.595 INFO 26839 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:29:05.659 INFO 26839 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:29:05.674 DEBUG 26839 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:29:05.730 DEBUG 26839 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:29:05.743 TRACE 26839 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:29:05.743 TRACE 26839 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:29:05.743 DEBUG 26839 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:29:05.778 DEBUG 26839 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:29:06.419 INFO 26839 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:29:06.557 INFO 26839 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:29:06.666 INFO 26839 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:29:07.016 INFO 26839 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:29:07.021 INFO 26839 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:29:07.025 INFO 26839 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:29:07.163 INFO 26839 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:29:07.167 INFO 26839 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 13.355 seconds (JVM running for 14.685)
2019-06-04 13:29:07.196 INFO 26839 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:29:18.413 INFO 26839 --- [http-nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-06-04 13:29:18.413 INFO 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-06-04 13:29:18.413 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@372d7b68
2019-06-04 13:29:18.416 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
2019-06-04 13:29:18.417 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
2019-06-04 13:29:18.422 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
2019-06-04 13:29:18.426 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
2019-06-04 13:29:18.426 DEBUG 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
2019-06-04 13:29:18.426 INFO 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 13 ms
2019-06-04 13:29:18.446 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:29:18.459 TRACE 26839 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 13:29:18.500 TRACE 26839 --- [http-nio-8081-exec-1] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 13:29:18.505 INFO 26839 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 13:29:18.517 INFO 26839 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants returned GetRestaurantsResponse(restaurants=null)
2019-06-04 13:29:18.555 DEBUG 26839 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:29:18.557 TRACE 26839 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Writing [GetRestaurantsResponse(restaurants=null)]
2019-06-04 13:29:18.592 TRACE 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:29:18.592 DEBUG 26839 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 13:29:42.746 TRACE 26839 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:29:42.749 TRACE 26839 --- [http-nio-8081-exec-2] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 13:29:42.751 TRACE 26839 --- [http-nio-8081-exec-2] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 13:29:42.751 INFO 26839 --- [http-nio-8081-exec-2] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 13:29:42.751 INFO 26839 --- [http-nio-8081-exec-2] c.c.q.controller.RestaurantController : getRestaurants returned GetRestaurantsResponse(restaurants=null)
2019-06-04 13:29:42.754 DEBUG 26839 --- [http-nio-8081-exec-2] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:29:42.755 TRACE 26839 --- [http-nio-8081-exec-2] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Writing [GetRestaurantsResponse(restaurants=null)]
2019-06-04 13:29:42.757 TRACE 26839 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:29:42.760 DEBUG 26839 --- [http-nio-8081-exec-2] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 13:29:47.855 INFO 26839 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 13:29:54.637 INFO 26946 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 26946 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 13:29:54.655 INFO 26946 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 13:29:54.826 INFO 26946 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 13:29:54.835 INFO 26946 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 13:29:57.450 INFO 26946 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 13:29:57.490 INFO 26946 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 29ms. Found 0 repository interfaces.
2019-06-04 13:29:59.126 INFO 26946 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 13:29:59.178 INFO 26946 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 13:29:59.179 INFO 26946 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 13:29:59.200 INFO 26946 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 13:29:59.200 INFO 26946 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 13:29:59.201 INFO 26946 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 13:29:59.206 INFO 26946 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 13:29:59.352 INFO 26946 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 13:29:59.354 DEBUG 26946 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 13:29:59.363 INFO 26946 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4527 ms
2019-06-04 13:30:00.570 INFO 26946 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 13:30:00.817 INFO 26946 --- [cluster-ClusterId{value='5cf62500b91c3e694244b3f5', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:12}] to localhost:27017
2019-06-04 13:30:00.836 INFO 26946 --- [cluster-ClusterId{value='5cf62500b91c3e694244b3f5', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=16428265}
2019-06-04 13:30:02.431 TRACE 26946 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 13:30:02.446 TRACE 26946 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
{ /swagger-resources/configuration/security}: securityConfiguration()
2019-06-04 13:30:02.455 TRACE 26946 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 13:30:02.469 DEBUG 26946 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 13:30:02.579 INFO 26946 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 13:30:02.803 INFO 26946 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 13:30:02.976 TRACE 26946 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 13:30:02.976 DEBUG 26946 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 13:30:03.327 INFO 26946 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 13:30:03.435 INFO 26946 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 13:30:03.452 DEBUG 26946 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 13:30:03.536 DEBUG 26946 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 13:30:03.555 TRACE 26946 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 13:30:03.577 TRACE 26946 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 13:30:03.584 DEBUG 26946 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 13:30:03.623 DEBUG 26946 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 13:30:04.220 INFO 26946 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 13:30:04.260 INFO 26946 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 13:30:04.304 INFO 26946 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 13:30:04.716 INFO 26946 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 13:30:04.723 INFO 26946 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 13:30:04.728 INFO 26946 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 13:30:04.898 INFO 26946 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 13:30:04.908 INFO 26946 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 11.254 seconds (JVM running for 12.362)
2019-06-04 13:30:04.937 INFO 26946 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 13:30:09.299 INFO 26946 --- [http-nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-06-04 13:30:09.299 INFO 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-06-04 13:30:09.301 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@3bd065c3
2019-06-04 13:30:09.304 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
2019-06-04 13:30:09.314 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
2019-06-04 13:30:09.321 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
2019-06-04 13:30:09.331 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
2019-06-04 13:30:09.331 DEBUG 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
2019-06-04 13:30:09.331 INFO 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 31 ms
2019-06-04 13:30:09.357 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 13:30:09.372 TRACE 26946 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 13:30:09.409 TRACE 26946 --- [http-nio-8081-exec-1] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 13:30:09.414 INFO 26946 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 13:30:09.419 INFO 26946 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants returned GetRestaurantsResponse(restaurants=[])
2019-06-04 13:30:09.462 DEBUG 26946 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 13:30:09.465 TRACE 26946 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Writing [GetRestaurantsResponse(restaurants=[])]
2019-06-04 13:30:09.498 TRACE 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 13:30:09.498 DEBUG 26946 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 14:03:06.369 INFO 26946 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 14:03:19.124 INFO 27660 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 27660 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 14:03:19.137 INFO 27660 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 14:03:19.439 INFO 27660 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 14:03:19.440 INFO 27660 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 14:03:26.229 INFO 27660 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 14:03:26.390 INFO 27660 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 126ms. Found 0 repository interfaces.
2019-06-04 14:03:31.093 INFO 27660 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 14:03:31.417 INFO 27660 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 14:03:31.417 INFO 27660 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 14:03:31.518 INFO 27660 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 14:03:31.518 INFO 27660 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 14:03:31.519 INFO 27660 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 14:03:31.558 INFO 27660 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 14:03:32.325 INFO 27660 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 14:03:32.351 DEBUG 27660 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 14:03:32.352 INFO 27660 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 12911 ms
2019-06-04 14:03:36.015 INFO 27690 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 27690 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 14:03:36.034 INFO 27690 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 14:03:36.213 INFO 27660 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 14:03:36.239 INFO 27690 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 14:03:36.242 INFO 27690 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 14:03:36.604 INFO 27660 --- [cluster-ClusterId{value='5cf62ce0b91c3e6c0c089430', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:13}] to localhost:27017
2019-06-04 14:03:36.630 INFO 27660 --- [cluster-ClusterId{value='5cf62ce0b91c3e6c0c089430', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=6515014}
2019-06-04 14:03:40.394 TRACE 27660 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 14:03:40.400 TRACE 27660 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 14:03:40.422 TRACE 27660 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 14:03:40.434 DEBUG 27660 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 14:03:40.702 INFO 27660 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 14:03:41.225 INFO 27660 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 14:03:41.620 TRACE 27660 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 14:03:41.631 DEBUG 27660 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 14:03:42.169 INFO 27660 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 14:03:42.315 INFO 27660 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 14:03:42.324 DEBUG 27660 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 14:03:42.449 DEBUG 27660 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 14:03:42.492 TRACE 27660 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 14:03:42.493 TRACE 27660 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 14:03:42.493 DEBUG 27660 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 14:03:42.561 DEBUG 27660 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 14:03:42.662 INFO 27690 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 14:03:42.757 INFO 27690 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 76ms. Found 0 repository interfaces.
2019-06-04 14:03:43.753 INFO 27660 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 14:03:43.901 INFO 27660 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 14:03:44.123 INFO 27660 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 14:03:44.937 INFO 27660 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 14:03:44.942 INFO 27660 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 14:03:44.956 INFO 27660 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 14:03:45.412 INFO 27660 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 14:03:45.430 INFO 27660 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 28.162 seconds (JVM running for 30.235)
2019-06-04 14:03:45.525 INFO 27660 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 14:03:46.751 INFO 27690 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 14:03:46.862 INFO 27690 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 14:03:46.863 INFO 27690 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 14:03:46.902 INFO 27690 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 14:03:46.903 INFO 27690 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 14:03:46.903 INFO 27690 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 14:03:46.923 INFO 27690 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 14:03:47.462 INFO 27690 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 14:03:47.463 DEBUG 27690 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 14:03:47.463 INFO 27690 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 11220 ms
2019-06-04 14:03:50.512 INFO 27660 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 14:04:01.924 INFO 27809 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 27809 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 14:04:01.939 INFO 27809 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 14:04:02.076 INFO 27809 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 14:04:02.077 INFO 27809 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 14:04:04.752 INFO 27809 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 14:04:04.806 INFO 27809 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 46ms. Found 0 repository interfaces.
2019-06-04 14:04:06.334 INFO 27809 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 14:04:06.388 INFO 27809 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 14:04:06.389 INFO 27809 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 14:04:06.411 INFO 27809 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 14:04:06.411 INFO 27809 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 14:04:06.411 INFO 27809 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 14:04:06.417 INFO 27809 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 14:04:06.559 INFO 27809 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 14:04:06.559 DEBUG 27809 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 14:04:06.560 INFO 27809 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 4482 ms
2019-06-04 14:04:07.732 INFO 27809 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 14:04:07.912 INFO 27809 --- [cluster-ClusterId{value='5cf62cffb91c3e6ca13de819', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:14}] to localhost:27017
2019-06-04 14:04:07.935 INFO 27809 --- [cluster-ClusterId{value='5cf62cffb91c3e6ca13de819', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=18659265}
2019-06-04 14:04:09.052 TRACE 27809 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 14:04:09.067 TRACE 27809 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 14:04:09.073 TRACE 27809 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 14:04:09.087 DEBUG 27809 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 14:04:09.218 INFO 27809 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 14:04:09.443 INFO 27809 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 14:04:09.523 TRACE 27809 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 14:04:09.524 DEBUG 27809 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 14:04:09.667 INFO 27809 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 14:04:09.716 INFO 27809 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 14:04:09.730 DEBUG 27809 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 14:04:09.803 DEBUG 27809 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 14:04:09.813 TRACE 27809 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 14:04:09.814 TRACE 27809 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 14:04:09.814 DEBUG 27809 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 14:04:09.832 DEBUG 27809 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 14:04:10.259 INFO 27809 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 14:04:10.305 INFO 27809 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 14:04:10.392 INFO 27809 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 14:04:10.702 INFO 27809 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 14:04:10.706 INFO 27809 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 14:04:10.709 INFO 27809 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 14:04:10.862 INFO 27809 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 14:04:10.868 INFO 27809 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 9.865 seconds (JVM running for 10.643)
2019-06-04 14:04:10.901 INFO 27809 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 14:04:14.582 INFO 27809 --- [http-nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-06-04 14:04:14.582 INFO 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-06-04 14:04:14.582 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@210ca0ac
2019-06-04 14:04:14.587 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
2019-06-04 14:04:14.589 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
2019-06-04 14:04:14.618 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
2019-06-04 14:04:14.636 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
2019-06-04 14:04:14.637 DEBUG 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
2019-06-04 14:04:14.638 INFO 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 56 ms
2019-06-04 14:04:14.665 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 14:04:14.682 TRACE 27809 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 14:04:14.727 TRACE 27809 --- [http-nio-8081-exec-1] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 14:04:14.733 INFO 27809 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 14:04:14.926 ERROR 27809 --- [http-nio-8081-exec-1] c.c.q.services.RestaurantServiceImpl : com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "id" (class com.crio.qeats.dto.Restaurant), not marked as ignorable (9 known properties: "imageUrl", "attributes", "restaurantId", "name", "latitude", "closesAt", "longitude", "city", "opensAt"])
at [Source: (String)"[
{
"id": "10",
"restaurantId": "10",
"name": "AndhraSpice",
"city": "Hsr Layout",
"imageUrl": "https://images.pexels.com/photos/1268558/pexels-photo-1268558.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940",
"latitude": 20.027,
"longitude": 30.0,
"attributes": [
"Tamil",
"South Indian"
]
},
{
"id": "11",
"restaurantId": "11",
"name": "Barbeque",
"city": "Btm Layout",
"imageUrl": "https://images.pexels.com/photos/161675/ab"[truncated 887 chars]; line: 3, column: 12] (through reference chain: java.util.ArrayList[0]->com.crio.qeats.dto.Restaurant["id"])
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "id" (class com.crio.qeats.dto.Restaurant), not marked as ignorable (9 known properties: "imageUrl", "attributes", "restaurantId", "name", "latitude", "closesAt", "longitude", "city", "opensAt"])
at [Source: (String)"[
{
"id": "10",
"restaurantId": "10",
"name": "AndhraSpice",
"city": "Hsr Layout",
"imageUrl": "https://images.pexels.com/photos/1268558/pexels-photo-1268558.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940",
"latitude": 20.027,
"longitude": 30.0,
"attributes": [
"Tamil",
"South Indian"
]
},
{
"id": "11",
"restaurantId": "11",
"name": "Barbeque",
"city": "Btm Layout",
"imageUrl": "https://images.pexels.com/photos/161675/ab"[truncated 887 chars]; line: 3, column: 12] (through reference chain: java.util.ArrayList[0]->com.crio.qeats.dto.Restaurant["id"])
at com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:61) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.DeserializationContext.handleUnknownProperty(DeserializationContext.java:823) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:1153) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownProperty(BeanDeserializerBase.java:1589) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownVanilla(BeanDeserializerBase.java:1567) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:294) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:151) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:286) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:245) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:27) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4013) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3023) ~[jackson-databind-2.9.8.jar:2.9.8]
at com.crio.qeats.services.RestaurantServiceImpl.loadRestaurantsDuringNormalHours(RestaurantServiceImpl.java:36) ~[main/:na]
at com.crio.qeats.services.RestaurantServiceImpl.findAllRestaurantsCloseBy(RestaurantServiceImpl.java:67) ~[main/:na]
at com.crio.qeats.controller.RestaurantController.getRestaurants(RestaurantController.java:73) [main/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_212]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_212]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_212]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_212]
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:90) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:117) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:106) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.17.jar:9.0.17]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [na:1.8.0_212]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [na:1.8.0_212]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.17.jar:9.0.17]
at java.lang.Thread.run(Thread.java:748) [na:1.8.0_212]
2019-06-04 14:04:14.934 INFO 27809 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants returned GetRestaurantsResponse(restaurants=[])
2019-06-04 14:04:14.972 DEBUG 27809 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Using 'application/json', given [*/*] and supported [application/json, application/*+json, application/json, application/*+json]
2019-06-04 14:04:14.973 TRACE 27809 --- [http-nio-8081-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Writing [GetRestaurantsResponse(restaurants=[])]
2019-06-04 14:04:14.997 TRACE 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No view rendering, null ModelAndView returned.
2019-06-04 14:04:14.998 DEBUG 27809 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed 200 OK, headers={masked}
2019-06-04 14:05:23.503 INFO 27809 --- [Thread-9] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2019-06-04 14:05:31.322 INFO 27909 --- [restartedMain] com.crio.qeats.QEatsApplication : Starting QEatsApplication on abhishek-chaudhary-in with PID 27909 (/home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS/qeatsbackend/build/classes/java/main started by crio-user in /home/crio-user/Documents/abhishek-chaudhary-in-ME_QEATS)
2019-06-04 14:05:31.410 INFO 27909 --- [restartedMain] com.crio.qeats.QEatsApplication : No active profile set, falling back to default profiles: default
2019-06-04 14:05:31.905 INFO 27909 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2019-06-04 14:05:31.909 INFO 27909 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2019-06-04 14:05:37.478 INFO 27909 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data repositories in DEFAULT mode.
2019-06-04 14:05:37.514 INFO 27909 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 25ms. Found 0 repository interfaces.
2019-06-04 14:05:40.247 INFO 27909 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8081 (http)
2019-06-04 14:05:40.537 INFO 27909 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2019-06-04 14:05:40.538 INFO 27909 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.17]
2019-06-04 14:05:40.583 INFO 27909 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : Loaded APR based Apache Tomcat Native library [1.2.21] using APR version [1.6.3].
2019-06-04 14:05:40.583 INFO 27909 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2019-06-04 14:05:40.583 INFO 27909 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2019-06-04 14:05:40.599 INFO 27909 --- [restartedMain] o.a.catalina.core.AprLifecycleListener : OpenSSL successfully initialized [OpenSSL 1.1.0g 2 Nov 2017]
2019-06-04 14:05:40.868 INFO 27909 --- [restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2019-06-04 14:05:40.869 DEBUG 27909 --- [restartedMain] o.s.web.context.ContextLoader : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2019-06-04 14:05:40.870 INFO 27909 --- [restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 8960 ms
2019-06-04 14:05:42.600 INFO 27909 --- [restartedMain] org.mongodb.driver.cluster : Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=500}
2019-06-04 14:05:42.809 INFO 27909 --- [cluster-ClusterId{value='5cf62d5eb91c3e6d0524abd4', description='null'}-localhost:27017] org.mongodb.driver.connection : Opened connection [connectionId{localValue:1, serverValue:15}] to localhost:27017
2019-06-04 14:05:42.834 INFO 27909 --- [cluster-ClusterId{value='5cf62d5eb91c3e6d0524abd4', description='null'}-localhost:27017] org.mongodb.driver.cluster : Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[4, 0, 10]}, minWireVersion=0, maxWireVersion=7, maxDocumentSize=16777216, logicalSessionTimeoutMinutes=30, roundTripTimeNanos=19882583}
2019-06-04 14:05:44.026 TRACE 27909 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
c.c.q.c.RestaurantController:
{GET /qeats/v1/restaurants}: getRestaurants(GetRestaurantsRequest)
2019-06-04 14:05:44.046 TRACE 27909 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
s.d.s.w.ApiResourceController:
{ /swagger-resources/configuration/security}: securityConfiguration()
{ /swagger-resources/configuration/ui}: uiConfiguration()
{ /swagger-resources}: swaggerResources()
2019-06-04 14:05:44.073 TRACE 27909 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping :
o.s.b.a.w.s.e.BasicErrorController:
{ /error, produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse)
{ /error}: error(HttpServletRequest)
2019-06-04 14:05:44.096 DEBUG 27909 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerMapping : 6 mappings in 'requestMappingHandlerMapping'
2019-06-04 14:05:44.332 INFO 27909 --- [restartedMain] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator'
2019-06-04 14:05:44.584 INFO 27909 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2019-06-04 14:05:44.704 TRACE 27909 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**/favicon.ico] onto ResourceHttpRequestHandler [class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], ServletContext resource [/], class path resource []]
2019-06-04 14:05:44.706 DEBUG 27909 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/**/favicon.ico] in 'faviconHandlerMapping'
2019-06-04 14:05:45.008 INFO 27909 --- [restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2019-06-04 14:05:45.127 INFO 27909 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2019-06-04 14:05:45.142 DEBUG 27909 --- [restartedMain] s.w.s.m.m.a.RequestMappingHandlerAdapter : ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice
2019-06-04 14:05:45.246 DEBUG 27909 --- [restartedMain] o.s.w.s.h.BeanNameUrlHandlerMapping : Detected 0 mappings in 'beanNameHandlerMapping'
2019-06-04 14:05:45.263 TRACE 27909 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/webjars/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/webjars/"]
2019-06-04 14:05:45.270 TRACE 27909 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/", "/"]
2019-06-04 14:05:45.271 DEBUG 27909 --- [restartedMain] o.s.w.s.handler.SimpleUrlHandlerMapping : Patterns [/webjars/**, /**] in 'resourceHandlerMapping'
2019-06-04 14:05:45.290 DEBUG 27909 --- [restartedMain] .m.m.a.ExceptionHandlerExceptionResolver : ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice
2019-06-04 14:05:45.879 INFO 27909 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2019-06-04 14:05:45.939 INFO 27909 --- [restartedMain] d.s.w.p.DocumentationPluginsBootstrapper : Found 1 custom documentation plugin(s)
2019-06-04 14:05:45.984 INFO 27909 --- [restartedMain] s.d.s.w.s.ApiListingReferenceScanner : Scanning for api listing references
2019-06-04 14:05:46.346 INFO 27909 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_1
2019-06-04 14:05:46.352 INFO 27909 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_2
2019-06-04 14:05:46.358 INFO 27909 --- [restartedMain] .d.s.w.r.o.CachingOperationNameGenerator : Generating unique operation named: handleUsingGET_3
2019-06-04 14:05:46.525 INFO 27909 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8081 (http) with context path ''
2019-06-04 14:05:46.531 INFO 27909 --- [restartedMain] com.crio.qeats.QEatsApplication : Started QEatsApplication in 16.661 seconds (JVM running for 17.426)
2019-06-04 14:05:46.590 INFO 27909 --- [restartedMain] com.crio.qeats.QEatsApplication : Congrats! Your QEatsApplication server has started
2019-06-04 14:06:01.205 INFO 27909 --- [http-nio-8081-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-06-04 14:06:01.206 INFO 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2019-06-04 14:06:01.208 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Detected org.springframework.web.multipart.support.StandardServletMultipartResolver@4610034
2019-06-04 14:06:01.219 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No LocaleResolver 'localeResolver': using default [AcceptHeaderLocaleResolver]
2019-06-04 14:06:01.230 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No ThemeResolver 'themeResolver': using default [FixedThemeResolver]
2019-06-04 14:06:01.245 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No RequestToViewNameTranslator 'viewNameTranslator': using default [DefaultRequestToViewNameTranslator]
2019-06-04 14:06:01.251 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : No FlashMapManager 'flashMapManager': using default [SessionFlashMapManager]
2019-06-04 14:06:01.251 DEBUG 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : enableLoggingRequestDetails='false': request parameters and headers will be masked to prevent unsafe logging of potentially sensitive data
2019-06-04 14:06:01.254 INFO 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 46 ms
2019-06-04 14:06:01.320 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : GET "/qeats/v1/restaurants?latitude=21.93&longitude=23.0", parameters={masked}, headers={masked} in DispatcherServlet 'dispatcherServlet'
2019-06-04 14:06:01.356 TRACE 27909 --- [http-nio-8081-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped to public org.springframework.http.ResponseEntity<com.crio.qeats.exchanges.GetRestaurantsResponse> com.crio.qeats.controller.RestaurantController.getRestaurants(com.crio.qeats.exchanges.GetRestaurantsRequest)
2019-06-04 14:06:01.411 TRACE 27909 --- [http-nio-8081-exec-1] .w.s.m.m.a.ServletInvocableHandlerMethod : Arguments: [GetRestaurantsRequest(latitude=21.93, longitude=23.0)]
2019-06-04 14:06:01.417 INFO 27909 --- [http-nio-8081-exec-1] c.c.q.controller.RestaurantController : getRestaurants called with GetRestaurantsRequest(latitude=21.93, longitude=23.0)
2019-06-04 14:06:01.564 TRACE 27909 --- [http-nio-8081-exec-1] o.s.web.servlet.DispatcherServlet : Failed to complete request
java.lang.IllegalArgumentException: resource fixtures/exchanges/peak_hours_list_of_restaurants.json not found.
at com.google.common.base.Preconditions.checkArgument(Preconditions.java:191) ~[guava-20.0.jar:na]
at com.google.common.io.Resources.getResource(Resources.java:197) ~[guava-20.0.jar:na]
at com.crio.qeats.utils.FixtureHelpers.fixture(FixtureHelpers.java:44) ~[main/:na]
at com.crio.qeats.utils.FixtureHelpers.fixture(FixtureHelpers.java:31) ~[main/:na]
at com.crio.qeats.services.RestaurantServiceImpl.loadRestaurantsDuringPeakHours(RestaurantServiceImpl.java:42) ~[main/:na]
at com.crio.qeats.services.RestaurantServiceImpl.findAllRestaurantsCloseBy(RestaurantServiceImpl.java:68) ~[main/:na]
at com.crio.qeats.controller.RestaurantController.getRestaurants(RestaurantController.java:73) ~[main/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_212]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_212]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_212]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_212]
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:189) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:102) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1038) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942) ~[spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1005) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:897) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:634) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:882) [spring-webmvc-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:741) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) [tomcat-embed-websocket-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:90) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:92) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:93) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.filterAndRecordMetrics(WebMvcMetricsFilter.java:117) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:106) [spring-boot-actuator-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:200) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-5.1.6.RELEASE.jar:5.1.6.RELEASE]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415) [tomcat-embed-core-9.0.17.jar:9.0.17]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.17.jar:9.0.17]