-
Notifications
You must be signed in to change notification settings - Fork 0
/
mylog.log
4992 lines (4916 loc) · 807 KB
/
mylog.log
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
2021-12-12 11:24:25.034 INFO 22848 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 22848 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 11:24:25.037 INFO 22848 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 11:24:25.106 INFO 22848 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2021-12-12 11:24:25.107 INFO 22848 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2021-12-12 11:24:35.322 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 8124 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 11:24:35.323 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 11:24:35.370 INFO 8124 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2021-12-12 11:24:35.371 INFO 8124 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2021-12-12 11:24:36.464 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 11:24:36.589 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 114 ms. Found 10 JPA repository interfaces.
2021-12-12 11:24:37.114 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@201d7ca0' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 11:24:37.120 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 11:24:37.513 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 11:24:37.525 INFO 8124 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 11:24:37.526 INFO 8124 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 11:24:37.618 INFO 8124 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 11:24:37.618 INFO 8124 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2247 ms
2021-12-12 11:24:37.704 WARN 8124 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 11:24:37.831 INFO 8124 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 11:24:37.900 INFO 8124 --- [restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.32.Final
2021-12-12 11:24:38.061 INFO 8124 --- [restartedMain] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2021-12-12 11:24:38.174 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2021-12-12 11:24:38.343 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2021-12-12 11:24:38.360 INFO 8124 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 11:24:39.507 INFO 8124 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 11:24:39.517 INFO 8124 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 11:24:41.225 INFO 8124 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3d6bb332, org.springframework.security.web.context.SecurityContextPersistenceFilter@20355ada, org.springframework.security.web.header.HeaderWriterFilter@34cdb555, org.springframework.web.filter.CorsFilter@522aa66f, org.springframework.security.web.authentication.logout.LogoutFilter@17e5187b, tn.esprit.spring.security.jwt.AuthTokenFilter@596ea596, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@9e8f394, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@15e7aa5c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1ddc37e5, org.springframework.security.web.session.SessionManagementFilter@7d1cfd5d, org.springframework.security.web.access.ExceptionTranslationFilter@3207d231, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@677a6d9d]
2021-12-12 11:24:41.350 INFO 8124 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 11:24:41.608 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 11:24:42.174 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 7.251 seconds (JVM running for 8.242)
2021-12-12 11:24:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:24:42.267 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:24:42.267 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:24:42.267 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 92 milliseconds.
2021-12-12 11:25:12.290 INFO 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 11:25:12.290 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 11:25:12.292 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2021-12-12 11:25:20.010 INFO 8124 --- [http-nio-8075-exec-10] tn.esprit.spring.LoggingAspect : Before method invoked::List tn.esprit.spring.service.StockServiceImpl.retrieveAllStocks()
2021-12-12 11:25:20.015 INFO 8124 --- [http-nio-8075-exec-10] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::List tn.esprit.spring.service.StockServiceImpl.retrieveAllStocks()
2021-12-12 11:25:20.016 INFO 8124 --- [http-nio-8075-exec-10] tn.esprit.spring.LoggingAspect : After method invoked::List tn.esprit.spring.service.StockServiceImpl.retrieveAllStocks()
2021-12-12 11:25:20.016 INFO 8124 --- [http-nio-8075-exec-10] tn.esprit.spring.LoggingAspect : Method execution time: 6 milliseconds.
2021-12-12 11:25:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:25:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:25:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:25:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 5 milliseconds.
2021-12-12 11:26:42.173 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:26:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:26:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:26:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:27:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:27:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:27:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:27:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:28:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:28:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:28:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:28:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 8 milliseconds.
2021-12-12 11:29:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:29:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:29:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:29:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:30:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:30:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:30:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:30:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:31:42.174 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:31:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:31:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:31:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:32:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:32:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:32:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:32:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:33:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:33:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:33:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:33:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:34:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:34:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:34:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:34:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:35:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:35:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:35:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:35:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 8 milliseconds.
2021-12-12 11:36:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:36:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:36:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:36:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:37:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:37:42.193 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:37:42.194 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:37:42.194 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 7 milliseconds.
2021-12-12 11:38:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:38:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:38:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:38:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 5 milliseconds.
2021-12-12 11:39:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:39:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:39:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:39:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:40:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:40:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:40:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:40:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:41:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:41:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:41:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:41:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:42:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:42:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:42:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:42:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:43:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:43:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:43:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:43:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:44:42.185 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:44:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:44:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:44:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:45:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:45:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:45:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:45:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:46:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:46:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:46:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:46:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:47:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:47:42.191 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:47:42.191 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:47:42.191 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:48:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:48:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:48:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:48:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:49:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:49:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:49:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:49:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:50:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:50:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:50:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:50:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:51:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:51:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:51:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:51:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:52:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:52:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:52:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:52:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:53:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:53:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:53:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:53:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:54:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:54:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:54:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:54:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 11:55:42.174 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:55:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:55:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:55:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:56:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:56:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:56:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:56:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:57:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:57:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:57:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:57:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:58:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:58:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:58:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:58:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 11:59:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:59:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:59:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 11:59:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:00:42.188 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:00:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:00:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:00:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 2 milliseconds.
2021-12-12 12:01:42.172 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:01:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:01:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:01:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 5 milliseconds.
2021-12-12 12:02:42.177 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:02:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:02:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:02:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:03:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:03:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:03:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:03:42.189 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:04:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:04:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:04:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:04:42.181 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:05:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:05:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:05:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:05:42.190 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:06:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:06:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:06:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:06:42.182 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 12:07:42.172 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:07:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:07:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:07:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:08:42.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:08:42.186 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:08:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:08:42.187 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:09:42.176 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:09:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:09:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:09:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 4 milliseconds.
2021-12-12 12:10:42.180 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:10:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:10:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:10:42.183 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:10:58.783 WARN 8124 --- [http-nio-8075-exec-3] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unexpected character ('}' (code 125)): was expecting double-quote to start field name; nested exception is com.fasterxml.jackson.core.JsonParseException: Unexpected character ('}' (code 125)): was expecting double-quote to start field name<LF> at [Source: (PushbackInputStream); line: 7, column: 2]]
2021-12-12 12:11:16.974 INFO 8124 --- [http-nio-8075-exec-4] tn.esprit.spring.LoggingAspect : Before method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:11:17.016 INFO 8124 --- [http-nio-8075-exec-4] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:11:17.016 INFO 8124 --- [http-nio-8075-exec-4] tn.esprit.spring.LoggingAspect : After method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:11:17.016 INFO 8124 --- [http-nio-8075-exec-4] tn.esprit.spring.LoggingAspect : Method execution time: 42 milliseconds.
2021-12-12 12:11:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:11:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:11:42.179 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:11:42.186 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.GeneratedMethodAccessor213.invoke(Unknown Source) ~[na:na]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.GeneratedMethodAccessor221.invoke(Unknown Source) ~[na:na]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:12:42.175 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:42.178 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:42.180 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.GeneratedMethodAccessor213.invoke(Unknown Source) ~[na:na]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.GeneratedMethodAccessor221.invoke(Unknown Source) ~[na:na]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:12:48.589 INFO 8124 --- [Thread-6] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:12:48.603 INFO 8124 --- [Thread-6] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2021-12-12 12:12:48.608 INFO 8124 --- [Thread-6] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2021-12-12 12:12:48.911 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 8124 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:12:48.912 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:12:49.269 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:12:49.329 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 59 ms. Found 10 JPA repository interfaces.
2021-12-12 12:12:49.408 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@5e99e4c7' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:12:49.409 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:12:49.497 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:12:49.498 INFO 8124 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:12:49.499 INFO 8124 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:12:49.514 INFO 8124 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:12:49.515 INFO 8124 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 599 ms
2021-12-12 12:12:49.548 WARN 8124 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:12:49.589 INFO 8124 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:12:49.594 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Starting...
2021-12-12 12:12:49.598 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Start completed.
2021-12-12 12:12:49.598 INFO 8124 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:12:49.951 INFO 8124 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:12:49.951 INFO 8124 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:12:50.470 INFO 8124 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@75dcc260, org.springframework.security.web.context.SecurityContextPersistenceFilter@1953c896, org.springframework.security.web.header.HeaderWriterFilter@6cc4869, org.springframework.web.filter.CorsFilter@5d54f8e9, org.springframework.security.web.authentication.logout.LogoutFilter@673ff971, tn.esprit.spring.security.jwt.AuthTokenFilter@13bb4c9d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1dff323e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7914aee8, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3aab1d7, org.springframework.security.web.session.SessionManagementFilter@5b284149, org.springframework.security.web.access.ExceptionTranslationFilter@16624953, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1bfff653]
2021-12-12 12:12:50.522 INFO 8124 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:12:50.621 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:12:50.865 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 1.987 seconds (JVM running for 2896.932)
2021-12-12 12:12:50.865 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:50.869 INFO 8124 --- [restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2021-12-12 12:12:50.876 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:50.876 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:12:50.878 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:12:54.012 INFO 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:12:54.012 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:12:54.014 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2021-12-12 12:12:54.033 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : Before method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:12:54.041 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:12:54.041 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : After method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:12:54.042 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : Method execution time: 9 milliseconds.
2021-12-12 12:13:27.280 INFO 8124 --- [Thread-13] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:13:27.281 INFO 8124 --- [Thread-13] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown initiated...
2021-12-12 12:13:27.286 INFO 8124 --- [Thread-13] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown completed.
2021-12-12 12:13:27.487 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 8124 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:13:27.487 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:13:27.819 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:13:27.865 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 45 ms. Found 10 JPA repository interfaces.
2021-12-12 12:13:27.936 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@714597b7' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:13:27.938 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:13:28.020 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:13:28.020 INFO 8124 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:13:28.020 INFO 8124 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:13:28.034 INFO 8124 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:13:28.034 INFO 8124 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 545 ms
2021-12-12 12:13:28.067 WARN 8124 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:13:28.101 INFO 8124 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:13:28.106 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Starting...
2021-12-12 12:13:28.109 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Start completed.
2021-12-12 12:13:28.110 INFO 8124 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:13:28.356 INFO 8124 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:13:28.356 INFO 8124 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:13:28.866 INFO 8124 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@532c4357, org.springframework.security.web.context.SecurityContextPersistenceFilter@7335d95c, org.springframework.security.web.header.HeaderWriterFilter@2d488b68, org.springframework.web.filter.CorsFilter@5584479a, org.springframework.security.web.authentication.logout.LogoutFilter@345934ce, tn.esprit.spring.security.jwt.AuthTokenFilter@17485fbc, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4611d668, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2f6b0609, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@719e9633, org.springframework.security.web.session.SessionManagementFilter@6104fa5a, org.springframework.security.web.access.ExceptionTranslationFilter@d1710d2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@9c700ab]
2021-12-12 12:13:28.910 INFO 8124 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:13:28.993 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:13:29.183 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 1.722 seconds (JVM running for 2935.251)
2021-12-12 12:13:29.184 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:13:29.187 INFO 8124 --- [restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2021-12-12 12:13:29.193 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:13:29.194 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:13:29.195 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:13:31.473 INFO 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:13:31.473 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:13:31.474 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2021-12-12 12:13:31.484 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : Before method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:13:31.490 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:13:31.490 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : After method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:13:31.490 INFO 8124 --- [http-nio-8075-exec-1] tn.esprit.spring.LoggingAspect : Method execution time: 6 milliseconds.
2021-12-12 12:14:03.651 INFO 8124 --- [Thread-19] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:14:03.652 INFO 8124 --- [Thread-19] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Shutdown initiated...
2021-12-12 12:14:03.655 INFO 8124 --- [Thread-19] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Shutdown completed.
2021-12-12 12:14:03.927 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 8124 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:14:03.927 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:14:04.272 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:14:04.320 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 47 ms. Found 10 JPA repository interfaces.
2021-12-12 12:14:04.387 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@49ef5cc' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:14:04.388 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:14:04.473 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:14:04.474 INFO 8124 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:14:04.474 INFO 8124 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:14:04.488 INFO 8124 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:14:04.489 INFO 8124 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 560 ms
2021-12-12 12:14:04.527 WARN 8124 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:14:04.562 INFO 8124 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:14:04.566 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Starting...
2021-12-12 12:14:04.570 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Start completed.
2021-12-12 12:14:04.571 INFO 8124 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:14:04.816 INFO 8124 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:14:04.817 INFO 8124 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:14:05.395 INFO 8124 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@bea5767, org.springframework.security.web.context.SecurityContextPersistenceFilter@3f37c273, org.springframework.security.web.header.HeaderWriterFilter@11c3b879, org.springframework.web.filter.CorsFilter@7ff2a234, org.springframework.security.web.authentication.logout.LogoutFilter@4b1b638, tn.esprit.spring.security.jwt.AuthTokenFilter@277919a6, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@32ab3c52, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3ea74a0e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7cf643c6, org.springframework.security.web.session.SessionManagementFilter@2e73df4, org.springframework.security.web.access.ExceptionTranslationFilter@2d1410af, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@ced73ff]
2021-12-12 12:14:05.451 INFO 8124 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:14:05.546 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:14:05.753 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 1.853 seconds (JVM running for 2971.822)
2021-12-12 12:14:05.754 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:14:05.757 INFO 8124 --- [restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2021-12-12 12:14:05.764 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:14:05.764 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:14:05.766 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:14:11.127 INFO 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:14:11.127 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:14:11.128 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2021-12-12 12:14:11.146 ERROR 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[.[.[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [/SpringMVC] threw exception [Request processing failed; nested exception is javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint 'javax.validation.constraints.NotBlank' validating type 'java.lang.Integer'. Check configuration for 'qteMin'] with root cause
javax.validation.UnexpectedTypeException: HV000030: No validator could be found for constraint 'javax.validation.constraints.NotBlank' validating type 'java.lang.Integer'. Check configuration for 'qteMin'
at org.hibernate.validator.internal.engine.constraintvalidation.ConstraintTree.getExceptionForNullValidator(ConstraintTree.java:116) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.constraintvalidation.ConstraintTree.getInitializedConstraintValidator(ConstraintTree.java:162) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.constraintvalidation.SimpleConstraintTree.validateConstraints(SimpleConstraintTree.java:54) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.constraintvalidation.ConstraintTree.validateConstraints(ConstraintTree.java:75) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.metadata.core.MetaConstraint.doValidateConstraint(MetaConstraint.java:130) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.metadata.core.MetaConstraint.validateConstraint(MetaConstraint.java:123) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validateMetaConstraint(ValidatorImpl.java:555) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validateConstraintsForSingleDefaultGroupElement(ValidatorImpl.java:518) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validateConstraintsForDefaultGroup(ValidatorImpl.java:488) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validateConstraintsForCurrentGroup(ValidatorImpl.java:450) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validateInContext(ValidatorImpl.java:400) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.hibernate.validator.internal.engine.ValidatorImpl.validate(ValidatorImpl.java:172) ~[hibernate-validator-6.2.0.Final.jar:6.2.0.Final]
at org.springframework.validation.beanvalidation.SpringValidatorAdapter.validate(SpringValidatorAdapter.java:109) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.boot.autoconfigure.validation.ValidatorAdapter.validate(ValidatorAdapter.java:65) ~[spring-boot-autoconfigure-2.5.7.jar:2.5.7]
at org.springframework.validation.DataBinder.validate(DataBinder.java:895) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.validateIfApplicable(AbstractMessageConverterMethodArgumentResolver.java:245) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:139) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:179) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:146) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.13.jar:5.3.13]
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.13.jar:5.3.13]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.55.jar:4.0.FR]
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.13.jar:5.3.13]
at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.55.jar:4.0.FR]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:113) ~[spring-web-5.3.13.jar:5.3.13]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:327) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:115) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:81) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:121) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:115) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:126) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:81) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:105) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:149) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at tn.esprit.spring.security.jwt.AuthTokenFilter.doFilterInternal(AuthTokenFilter.java:49) ~[classes/:na]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:103) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:89) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:110) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:80) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:55) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:336) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:211) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:183) ~[spring-security-web-5.5.3.jar:5.5.3]
at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:358) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:271) ~[spring-web-5.3.13.jar:5.3.13]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.13.jar:5.3.13]
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) ~[spring-web-5.3.13.jar:5.3.13]
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:540) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:357) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:382) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:895) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1722) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) [tomcat-embed-core-9.0.55.jar:9.0.55]
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-9.0.55.jar:9.0.55]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:15:05.764 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:05.880 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:05.880 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:05.882 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:15:06.840 INFO 8124 --- [Thread-25] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:15:06.841 INFO 8124 --- [Thread-25] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Shutdown initiated...
2021-12-12 12:15:06.859 INFO 8124 --- [Thread-25] com.zaxxer.hikari.HikariDataSource : HikariPool-4 - Shutdown completed.
2021-12-12 12:15:07.108 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 8124 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:15:07.108 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:15:07.609 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:15:07.661 INFO 8124 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 52 ms. Found 10 JPA repository interfaces.
2021-12-12 12:15:07.744 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@58e7be30' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:15:07.745 INFO 8124 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:15:07.838 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:15:07.839 INFO 8124 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:15:07.839 INFO 8124 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:15:07.854 INFO 8124 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:15:07.854 INFO 8124 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 742 ms
2021-12-12 12:15:07.907 WARN 8124 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:15:07.967 INFO 8124 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:15:07.973 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Starting...
2021-12-12 12:15:07.976 INFO 8124 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Start completed.
2021-12-12 12:15:07.976 INFO 8124 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:15:08.245 INFO 8124 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:15:08.245 INFO 8124 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:15:08.753 INFO 8124 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@d08da64, org.springframework.security.web.context.SecurityContextPersistenceFilter@25319adf, org.springframework.security.web.header.HeaderWriterFilter@69f0793, org.springframework.web.filter.CorsFilter@6c4ab4be, org.springframework.security.web.authentication.logout.LogoutFilter@6bdb8aa7, tn.esprit.spring.security.jwt.AuthTokenFilter@2faf446, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6b7495a0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@15a9a4c2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@16298267, org.springframework.security.web.session.SessionManagementFilter@34fc72f5, org.springframework.security.web.access.ExceptionTranslationFilter@49d849, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@35ecde5a]
2021-12-12 12:15:08.812 INFO 8124 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:15:08.919 INFO 8124 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:15:08.955 INFO 8124 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:15:08.958 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:15:08.959 INFO 8124 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2021-12-12 12:15:09.278 INFO 8124 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 2.202 seconds (JVM running for 3035.347)
2021-12-12 12:15:09.282 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:09.282 INFO 8124 --- [restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2021-12-12 12:15:09.292 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:09.293 INFO 8124 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:09.294 ERROR 8124 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$1fd10055.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:15:43.667 INFO 8124 --- [RMI TCP Connection(72)-127.0.0.1] inMXBeanRegistrar$SpringApplicationAdmin : Application shutdown requested.
2021-12-12 12:15:44.005 INFO 8124 --- [RMI TCP Connection(72)-127.0.0.1] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:15:44.006 INFO 8124 --- [RMI TCP Connection(72)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Shutdown initiated...
2021-12-12 12:15:44.012 INFO 8124 --- [RMI TCP Connection(72)-127.0.0.1] com.zaxxer.hikari.HikariDataSource : HikariPool-5 - Shutdown completed.
2021-12-12 12:15:46.821 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 33388 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:15:46.822 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:15:46.871 INFO 33388 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2021-12-12 12:15:46.872 INFO 33388 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2021-12-12 12:15:47.886 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:15:47.988 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 93 ms. Found 10 JPA repository interfaces.
2021-12-12 12:15:48.460 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@39d80ed8' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:15:48.464 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:15:48.813 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:15:48.823 INFO 33388 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:15:48.823 INFO 33388 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:15:48.900 INFO 33388 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:15:48.901 INFO 33388 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2029 ms
2021-12-12 12:15:48.989 WARN 33388 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:15:49.108 INFO 33388 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:15:49.167 INFO 33388 --- [restartedMain] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.32.Final
2021-12-12 12:15:49.314 INFO 33388 --- [restartedMain] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2021-12-12 12:15:49.425 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2021-12-12 12:15:49.572 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2021-12-12 12:15:49.589 INFO 33388 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:15:50.649 INFO 33388 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:15:50.659 INFO 33388 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:15:52.200 INFO 33388 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2bbaedc0, org.springframework.security.web.context.SecurityContextPersistenceFilter@628e0de5, org.springframework.security.web.header.HeaderWriterFilter@5568b8d0, org.springframework.web.filter.CorsFilter@391043dd, org.springframework.security.web.authentication.logout.LogoutFilter@526220f5, tn.esprit.spring.security.jwt.AuthTokenFilter@52e64258, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@df5c20d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@40b8c167, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@74bb07b6, org.springframework.security.web.session.SessionManagementFilter@3f9858ef, org.springframework.security.web.access.ExceptionTranslationFilter@4b69cfa6, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@23910283]
2021-12-12 12:15:52.315 INFO 33388 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:15:52.560 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:15:53.063 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 6.631 seconds (JVM running for 7.612)
2021-12-12 12:15:53.065 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:53.132 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:53.132 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:15:53.132 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 68 milliseconds.
2021-12-12 12:16:03.716 INFO 33388 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:16:03.716 INFO 33388 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:16:03.718 INFO 33388 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms
2021-12-12 12:16:19.498 WARN 33388 --- [http-nio-8075-exec-10] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity tn.esprit.spring.controller.StockController.addStock(tn.esprit.spring.entity.Stock) with 3 errors: [Field error in object 'stock' on field 'libelleStock': rejected value [null]; codes [NotBlank.stock.libelleStock,NotBlank.libelleStock,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.libelleStock,libelleStock]; arguments []; default message [libelleStock]]; default message [This field must not be empty]] [Field error in object 'stock' on field 'qteMin': rejected value [0]; codes [Min.stock.qteMin,Min.qteMin,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qteMin,qteMin]; arguments []; default message [qteMin],1]; default message [must be greater than or equal to 1]] [Field error in object 'stock' on field 'qte': rejected value [0]; codes [Min.stock.qte,Min.qte,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qte,qte]; arguments []; default message [qte],1]; default message [must be greater than or equal to 1]] ]
2021-12-12 12:16:53.071 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:16:53.074 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:16:53.074 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:16:53.074 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 3 milliseconds.
2021-12-12 12:17:07.047 INFO 33388 --- [Thread-6] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:17:07.050 INFO 33388 --- [Thread-6] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2021-12-12 12:17:07.058 INFO 33388 --- [Thread-6] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2021-12-12 12:17:07.260 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 33388 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:17:07.261 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:17:07.628 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:17:07.677 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 48 ms. Found 10 JPA repository interfaces.
2021-12-12 12:17:07.757 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@29e6e421' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:17:07.758 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:17:07.848 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:17:07.849 INFO 33388 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:17:07.849 INFO 33388 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:17:07.865 INFO 33388 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:17:07.865 INFO 33388 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 602 ms
2021-12-12 12:17:07.904 WARN 33388 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:17:07.946 INFO 33388 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:17:07.952 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Starting...
2021-12-12 12:17:07.956 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Start completed.
2021-12-12 12:17:07.956 INFO 33388 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:17:08.303 INFO 33388 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:17:08.303 INFO 33388 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:17:08.869 INFO 33388 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@74f7afd1, org.springframework.security.web.context.SecurityContextPersistenceFilter@41bb016d, org.springframework.security.web.header.HeaderWriterFilter@1bf5bd8f, org.springframework.web.filter.CorsFilter@41ec4040, org.springframework.security.web.authentication.logout.LogoutFilter@3757878f, tn.esprit.spring.security.jwt.AuthTokenFilter@46f5c1a6, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@17acf44b, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@21032af4, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@774b16c0, org.springframework.security.web.session.SessionManagementFilter@7a0eaf97, org.springframework.security.web.access.ExceptionTranslationFilter@50e0c43d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@7c241935]
2021-12-12 12:17:08.925 INFO 33388 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:17:09.034 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:17:09.308 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 2.079 seconds (JVM running for 83.857)
2021-12-12 12:17:09.309 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:17:09.312 INFO 33388 --- [restartedMain] .ConditionEvaluationDeltaLoggingListener : Condition evaluation unchanged
2021-12-12 12:17:09.318 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:17:09.319 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:17:09.319 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Method execution time: 11 milliseconds.
2021-12-12 12:17:11.795 INFO 33388 --- [http-nio-8075-exec-1] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2021-12-12 12:17:11.795 INFO 33388 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2021-12-12 12:17:11.796 INFO 33388 --- [http-nio-8075-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2021-12-12 12:17:11.834 WARN 33388 --- [http-nio-8075-exec-1] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity tn.esprit.spring.controller.StockController.addStock(tn.esprit.spring.entity.Stock) with 3 errors: [Field error in object 'stock' on field 'libelleStock': rejected value [null]; codes [NotBlank.stock.libelleStock,NotBlank.libelleStock,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.libelleStock,libelleStock]; arguments []; default message [libelleStock]]; default message [This field must not be empty]] [Field error in object 'stock' on field 'qte': rejected value [0]; codes [Min.stock.qte,Min.qte,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qte,qte]; arguments []; default message [qte],1]; default message [must be greater than or equal to 1]] [Field error in object 'stock' on field 'qteMin': rejected value [0]; codes [Min.stock.qteMin,Min.qteMin,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qteMin,qteMin]; arguments []; default message [qteMin],1]; default message [must be greater than or equal to 1]] ]
2021-12-12 12:17:14.268 WARN 33388 --- [http-nio-8075-exec-2] .m.m.a.ExceptionHandlerExceptionResolver : Resolved [org.springframework.web.bind.MethodArgumentNotValidException: Validation failed for argument [0] in public org.springframework.http.ResponseEntity tn.esprit.spring.controller.StockController.addStock(tn.esprit.spring.entity.Stock) with 3 errors: [Field error in object 'stock' on field 'qte': rejected value [0]; codes [Min.stock.qte,Min.qte,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qte,qte]; arguments []; default message [qte],1]; default message [must be greater than or equal to 1]] [Field error in object 'stock' on field 'qteMin': rejected value [0]; codes [Min.stock.qteMin,Min.qteMin,Min.java.lang.Integer,Min]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.qteMin,qteMin]; arguments []; default message [qteMin],1]; default message [must be greater than or equal to 1]] [Field error in object 'stock' on field 'libelleStock': rejected value [null]; codes [NotBlank.stock.libelleStock,NotBlank.libelleStock,NotBlank.java.lang.String,NotBlank]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [stock.libelleStock,libelleStock]; arguments []; default message [libelleStock]]; default message [This field must not be empty]] ]
2021-12-12 12:17:33.454 INFO 33388 --- [http-nio-8075-exec-3] tn.esprit.spring.LoggingAspect : Before method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:17:33.494 INFO 33388 --- [http-nio-8075-exec-3] tn.esprit.spring.LoggingAspect : AfterReturning method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:17:33.494 INFO 33388 --- [http-nio-8075-exec-3] tn.esprit.spring.LoggingAspect : After method invoked::Stock tn.esprit.spring.service.StockServiceImpl.addStock(Stock)
2021-12-12 12:17:33.494 INFO 33388 --- [http-nio-8075-exec-3] tn.esprit.spring.LoggingAspect : Method execution time: 40 milliseconds.
2021-12-12 12:18:09.320 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : Before method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:18:09.323 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:18:09.324 INFO 33388 --- [scheduling-1] tn.esprit.spring.LoggingAspect : After method invoked::void tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock()
2021-12-12 12:18:09.328 ERROR 33388 --- [scheduling-1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task
java.lang.NullPointerException: null
at tn.esprit.spring.service.StockServiceImpl.retrieveStatusStock(StockServiceImpl.java:64) ~[classes/:na]
at tn.esprit.spring.service.StockServiceImpl$$FastClassBySpringCGLIB$$a78870da.invoke(<generated>) ~[classes/:na]
at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) ~[spring-core-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:783) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAfterAdvice.invoke(AspectJAfterAdvice.java:49) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.MethodInvocationProceedingJoinPoint.proceed(MethodInvocationProceedingJoinPoint.java:89) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.LoggingAspect.profile(LoggingAspect.java:46) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethodWithGivenArgs(AbstractAspectJAdvice.java:634) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AbstractAspectJAdvice.invokeAdviceMethod(AbstractAspectJAdvice.java:624) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.aspectj.AspectJAroundAdvice.invoke(AspectJAroundAdvice.java:72) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:753) ~[spring-aop-5.3.13.jar:5.3.13]
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:698) ~[spring-aop-5.3.13.jar:5.3.13]
at tn.esprit.spring.service.StockServiceImpl$$EnhancerBySpringCGLIB$$5ec2c0e8.retrieveStatusStock(<generated>) ~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_111]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_111]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_111]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_111]
at org.springframework.scheduling.support.ScheduledMethodRunnable.run(ScheduledMethodRunnable.java:84) ~[spring-context-5.3.13.jar:5.3.13]
at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) ~[spring-context-5.3.13.jar:5.3.13]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) [na:1.8.0_111]
at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:308) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:180) [na:1.8.0_111]
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:294) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) [na:1.8.0_111]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) [na:1.8.0_111]
at java.lang.Thread.run(Thread.java:745) [na:1.8.0_111]
2021-12-12 12:18:17.407 INFO 33388 --- [Thread-13] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:18:17.408 INFO 33388 --- [Thread-13] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown initiated...
2021-12-12 12:18:17.413 INFO 33388 --- [Thread-13] com.zaxxer.hikari.HikariDataSource : HikariPool-2 - Shutdown completed.
2021-12-12 12:18:17.615 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Starting SpringBootAppApplication using Java 1.8.0_111 on Boudhina-DeskTop with PID 33388 (C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject\target\classes started by e-boudhina in C:\Users\e-boudhina\Documents\workspace-spring-tool-suite-4-4.11.1.RELEASE\SpringBackEndProject)
2021-12-12 12:18:17.615 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : No active profile set, falling back to default profiles: default
2021-12-12 12:18:17.960 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2021-12-12 12:18:18.009 INFO 33388 --- [restartedMain] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 48 ms. Found 10 JPA repository interfaces.
2021-12-12 12:18:18.079 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@5f496436' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:18:18.080 INFO 33388 --- [restartedMain] trationDelegate$BeanPostProcessorChecker : Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2021-12-12 12:18:18.164 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8075 (http)
2021-12-12 12:18:18.164 INFO 33388 --- [restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2021-12-12 12:18:18.164 INFO 33388 --- [restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.55]
2021-12-12 12:18:18.181 INFO 33388 --- [restartedMain] o.a.c.c.C.[.[localhost].[/SpringMVC] : Initializing Spring embedded WebApplicationContext
2021-12-12 12:18:18.181 INFO 33388 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 563 ms
2021-12-12 12:18:18.219 WARN 33388 --- [restartedMain] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2021-12-12 12:18:18.256 INFO 33388 --- [restartedMain] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2021-12-12 12:18:18.261 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Starting...
2021-12-12 12:18:18.265 INFO 33388 --- [restartedMain] com.zaxxer.hikari.HikariDataSource : HikariPool-3 - Start completed.
2021-12-12 12:18:18.265 INFO 33388 --- [restartedMain] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL5Dialect
2021-12-12 12:18:20.938 INFO 33388 --- [restartedMain] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2021-12-12 12:18:20.939 INFO 33388 --- [restartedMain] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2021-12-12 12:18:21.460 INFO 33388 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@786a4776, org.springframework.security.web.context.SecurityContextPersistenceFilter@3bad8610, org.springframework.security.web.header.HeaderWriterFilter@6cc8c4be, org.springframework.web.filter.CorsFilter@7d0066dc, org.springframework.security.web.authentication.logout.LogoutFilter@7ecec18a, tn.esprit.spring.security.jwt.AuthTokenFilter@1fbbaf78, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@16792378, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3cbee83d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7bd679cf, org.springframework.security.web.session.SessionManagementFilter@2f974709, org.springframework.security.web.access.ExceptionTranslationFilter@3223fb56, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1d6f4b0b]
2021-12-12 12:18:21.516 INFO 33388 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2021-12-12 12:18:21.608 INFO 33388 --- [restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8075 (http) with context path '/SpringMVC'
2021-12-12 12:18:21.856 INFO 33388 --- [restartedMain] t.e.spring.SpringBootAppApplication : Started SpringBootAppApplication in 4.269 seconds (JVM running for 156.406)