-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.log
8732 lines (8711 loc) · 680 KB
/
application.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
42336212 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool
– HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1h9m12s20ms).
42614553 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool
– HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=4m38s343ms).
42868113 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
42868139 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
42868173 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1108 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45092 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1115 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1223 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1224 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2359 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2465 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 96 ms. Found 4 JPA repository interfaces.
3750 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3769 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3769 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3770 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3850 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3850 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2625 ms
4164 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4211 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4340 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4487 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4584 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4596 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5213 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5219 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
5923 [restartedMain] WARN o.s.b.a.o.j.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
6209 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
6694 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
6718 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
6743 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
6764 [restartedMain] INFO Main
– Started Pr14Application in 6.098 seconds (JVM running for 7.042)
6795 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
6806 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 23мс
6813 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
6815 [restartedMain] INFO Main
– Application started
16160 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
16160 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
16164 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
16391 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– lenses controller: works
94297 [http-nio-8080-exec-10] INFO c.c.pr14.controllers.MainController
– lenses controller: works
96218 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– men post: works
107469 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– lenses controller: works
110056 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– women post: works
160980 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
160993 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
161011 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1314 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45166 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1330 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1492 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1492 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2680 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2786 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 95 ms. Found 4 JPA repository interfaces.
4218 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4232 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4233 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4233 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4305 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4306 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2813 ms
4609 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4672 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4802 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4934 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
5030 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
5042 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5751 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5757 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6793 [restartedMain] WARN o.s.b.a.o.j.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
7212 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7436 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7465 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7485 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7501 [restartedMain] INFO Main
– Started Pr14Application in 6.765 seconds (JVM running for 7.933)
7531 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7542 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 22мс
7550 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7552 [restartedMain] INFO Main
– Application started
7670 [http-nio-8080-exec-4] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
7670 [http-nio-8080-exec-4] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
7671 [http-nio-8080-exec-4] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 1 ms
7869 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– women post: works
10764 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– lenses controller: works
12492 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– silicon: works
14614 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– hydrohel: works
16357 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– silicon: works
17248 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– hydrohel: works
50464 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
50473 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
50480 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1123 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45186 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1132 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1295 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1297 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2263 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2368 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 93 ms. Found 4 JPA repository interfaces.
3668 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3686 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3687 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3687 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3772 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3772 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2475 ms
4123 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4167 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4295 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4436 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4514 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4525 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5217 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5222 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6187 [restartedMain] WARN o.s.b.a.o.j.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
6591 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7248 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7303 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7374 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7393 [restartedMain] INFO Main
– Started Pr14Application in 6.78 seconds (JVM running for 7.625)
7429 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7440 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 25мс
7448 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7450 [restartedMain] INFO Main
– Application started
18206 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
18207 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
18216 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 8 ms
20134 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– hydrohel: works
23639 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– silicon: works
25330 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– lenses controller: works
26986 [http-nio-8080-exec-10] INFO c.c.pr14.controllers.MainController
– silicon: works
68847 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
68853 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
68861 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1248 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45206 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1256 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1376 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1377 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2408 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2509 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 91 ms. Found 4 JPA repository interfaces.
3840 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3850 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3851 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3851 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3933 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3934 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2557 ms
4262 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4302 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4407 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4539 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4627 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4638 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5343 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5350 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6128 [restartedMain] WARN o.s.b.a.o.j.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
6711 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
6960 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
6985 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7002 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7023 [restartedMain] INFO Main
– Started Pr14Application in 6.428 seconds (JVM running for 7.234)
7093 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7105 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 63мс
7112 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 5мс
7116 [restartedMain] INFO Main
– Application started
25032 [http-nio-8080-exec-6] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
25032 [http-nio-8080-exec-6] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
25037 [http-nio-8080-exec-6] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
25327 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– silicon: works
34000 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– home controller: works
40069 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– contact mapper: works
40174 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– contact controller: works
44805 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– contact mapper: works
44862 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– contact controller: works
46282 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– lenses controller: works
50849 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– hydrohel: works
51997 [http-nio-8080-exec-10] INFO c.c.pr14.controllers.MainController
– silicon: works
359501 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
359515 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
359533 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1164 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45267 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1180 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1323 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1325 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2421 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2525 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 93 ms. Found 4 JPA repository interfaces.
3820 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3833 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3834 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3834 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3905 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3905 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2580 ms
4222 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4261 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4386 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4515 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4602 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4614 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5270 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5276 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6128 [restartedMain] WARN o.s.b.a.o.j.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
6640 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
6998 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7091 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7113 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7130 [restartedMain] INFO Main
– Started Pr14Application in 6.444 seconds (JVM running for 7.428)
7166 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7182 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 25мс
7189 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7196 [restartedMain] INFO Main
– Application started
25937 [http-nio-8080-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
25938 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
25942 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
26187 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– silicon: works
36543 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– medics post: works
75626 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
75638 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
75644 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1648 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45302 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1658 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1818 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1819 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2853 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2970 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 102 ms. Found 4 JPA repository interfaces.
4297 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4309 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4310 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4310 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4386 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4387 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2568 ms
4727 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4772 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4889 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
5026 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
5116 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
5128 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5767 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5773 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6861 [restartedMain] WARN o.s.b.a.o.j.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
7246 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7512 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7548 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7571 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7587 [restartedMain] INFO Main
– Started Pr14Application in 6.658 seconds (JVM running for 7.884)
7626 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7636 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 28мс
7643 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7645 [restartedMain] INFO Main
– Application started
9975 [http-nio-8080-exec-6] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
9975 [http-nio-8080-exec-6] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
9979 [http-nio-8080-exec-6] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
10222 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– lenses controller: works
13758 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– silicon: works
14606 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– silicon: works
15338 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– silicon: works
109961 [http-nio-8080-exec-9] INFO c.c.pr14.controllers.MainController
– silicon: works
112336 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– silicon: works
214853 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– silicon: works
216048 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– silicon: works
216667 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– silicon: works
220240 [http-nio-8080-exec-5] INFO c.c.pr14.controllers.MainController
– hydrohel: works
220924 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– silicon: works
374547 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
374562 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
374583 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1384 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45347 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1392 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1534 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1535 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2676 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2779 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 93 ms. Found 4 JPA repository interfaces.
4101 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4115 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4116 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4116 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4185 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4186 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2650 ms
4560 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4606 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4736 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4884 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4972 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4983 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5683 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5690 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
7222 [restartedMain] WARN o.s.b.a.o.j.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
7569 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7857 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7887 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7910 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7929 [restartedMain] INFO Main
– Started Pr14Application in 7.269 seconds (JVM running for 8.188)
7967 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7978 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 31мс
7986 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 7мс
7988 [restartedMain] INFO Main
– Application started
9628 [http-nio-8080-exec-4] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
9628 [http-nio-8080-exec-4] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
9637 [http-nio-8080-exec-4] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 9 ms
9910 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– silicon: works
13432 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– silicon: works
15729 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– silicon: works
16878 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– silicon: works
18177 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– silicon: works
19151 [http-nio-8080-exec-7] INFO c.c.pr14.controllers.MainController
– hydrohel: works
58272 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
58280 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
58294 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1305 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45374 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1317 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1461 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1461 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2636 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2745 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 99 ms. Found 4 JPA repository interfaces.
4156 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4167 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4168 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4168 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4240 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4241 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2779 ms
4569 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4609 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4742 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4880 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4971 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4983 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5635 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5644 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6409 [restartedMain] WARN o.s.b.a.o.j.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
7054 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7324 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7358 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7390 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7409 [restartedMain] INFO Main
– Started Pr14Application in 6.703 seconds (JVM running for 7.745)
7440 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7450 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 23мс
7458 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7460 [restartedMain] INFO Main
– Application started
241358 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
241359 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
241369 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 10 ms
262074 [http-nio-8080-exec-5] INFO c.c.pr14.controllers.MainController
– frames controller: works
262078 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– medics post: works
262986 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– home controller: works
263197 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– lenses controller: works
264080 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– lenses controller: works
289267 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
289280 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
289300 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1148 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45407 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1155 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1291 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1293 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2368 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2475 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 92 ms. Found 4 JPA repository interfaces.
3818 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3830 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3831 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3831 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3915 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3915 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2618 ms
4232 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4277 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4408 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4541 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4616 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4627 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5216 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5221 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6305 [restartedMain] WARN o.s.b.a.o.j.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
6653 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7009 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7057 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7079 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7096 [restartedMain] INFO Main
– Started Pr14Application in 6.447 seconds (JVM running for 7.393)
7132 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7142 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 26мс
7151 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 7мс
7153 [restartedMain] INFO Main
– Application started
9808 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
9812 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
9816 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
10069 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– lenses controller: works
131032 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
131056 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
131071 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1301 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45443 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1310 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1455 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1457 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2576 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2688 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 102 ms. Found 4 JPA repository interfaces.
4091 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4105 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4106 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4106 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4175 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4175 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2718 ms
4488 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4535 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4684 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4826 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4919 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4931 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5595 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5601 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
6655 [restartedMain] WARN o.s.b.a.o.j.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
6999 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
7221 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
7245 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
7264 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
7279 [restartedMain] INFO Main
– Started Pr14Application in 6.633 seconds (JVM running for 7.55)
7317 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
7327 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 23мс
7334 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
7336 [restartedMain] INFO Main
– Application started
7434 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
7434 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
7435 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 1 ms
7606 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– silicon: works
9280 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– frames controller: works
10243 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– lenses controller: works
14944 [http-nio-8080-exec-5] INFO c.c.pr14.controllers.MainController
– silicon: works
17876 [http-nio-8080-exec-4] INFO c.c.pr14.controllers.MainController
– silicon: works
20186 [http-nio-8080-exec-10] INFO c.c.pr14.controllers.MainController
– silicon: works
74435 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– silicon: works
135389 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
135432 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
135445 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1121 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45485 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1134 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1289 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1290 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2558 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2678 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 109 ms. Found 4 JPA repository interfaces.
4073 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
4092 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
4093 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
4094 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
4166 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
4166 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2876 ms
4894 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4952 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
5351 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
5901 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
6058 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
6073 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
6796 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
6803 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
8015 [restartedMain] WARN o.s.b.a.o.j.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
8340 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
8600 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
8626 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
8653 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
8672 [restartedMain] INFO Main
– Started Pr14Application in 8.043 seconds (JVM running for 8.894)
8704 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
8714 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 23мс
8722 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
8725 [restartedMain] INFO Main
– Application started
9174 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
9175 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
9180 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 5 ms
9356 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– silicon: works
10564 [http-nio-8080-exec-8] INFO c.c.pr14.controllers.MainController
– silicon: works
11115 [http-nio-8080-exec-10] INFO c.c.pr14.controllers.MainController
– silicon: works
15068 [http-nio-8080-exec-9] INFO c.c.pr14.controllers.MainController
– silicon: works
16923 [http-nio-8080-exec-1] INFO c.c.pr14.controllers.MainController
– silicon: works
18780 [http-nio-8080-exec-9] INFO c.c.pr14.controllers.MainController
– silicon: works
20831 [http-nio-8080-exec-6] INFO c.c.pr14.controllers.MainController
– silicon: works
38954 [SpringApplicationShutdownHook] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Closing JPA EntityManagerFactory for persistence unit 'default'
38965 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown initiated...
38976 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Shutdown completed.
1118 [restartedMain] INFO Main
– Starting Pr14Application using Java 17.0.2 on MacBookAirHydrx.local with PID 45505 (/Users/hydroponic/IdeaProjects/proect/target/classes started by hydroponic in /Users/hydroponic/IdeaProjects/proect)
1127 [restartedMain] INFO Main
– No active profile set, falling back to 1 default profile: "default"
1293 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
1294 [restartedMain] INFO o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor
– For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2292 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2394 [restartedMain] INFO o.s.d.r.c.RepositoryConfigurationDelegate
– Finished Spring Data repository scanning in 93 ms. Found 4 JPA repository interfaces.
3627 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat initialized with port(s): 8080 (http)
3640 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Initializing ProtocolHandler ["http-nio-8080"]
3641 [restartedMain] INFO o.a.catalina.core.StandardService
– Starting service [Tomcat]
3641 [restartedMain] INFO o.a.catalina.core.StandardEngine
– Starting Servlet engine: [Apache Tomcat/9.0.58]
3724 [restartedMain] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring embedded WebApplicationContext
3724 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext
– Root WebApplicationContext: initialization completed in 2429 ms
4035 [restartedMain] INFO o.h.jpa.internal.util.LogHelper
– HHH000204: Processing PersistenceUnitInfo [name: default]
4074 [restartedMain] INFO org.hibernate.Version
– HHH000412: Hibernate ORM core version 5.6.5.Final
4196 [restartedMain] INFO o.h.annotations.common.Version
– HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
4332 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Starting...
4448 [restartedMain] INFO com.zaxxer.hikari.HikariDataSource
– HikariPool-1 - Start completed.
4462 [restartedMain] INFO org.hibernate.dialect.Dialect
– HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
5073 [restartedMain] INFO o.h.e.t.j.p.i.JtaPlatformInitiator
– HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
5078 [restartedMain] INFO o.s.o.j.LocalContainerEntityManagerFactoryBean
– Initialized JPA EntityManagerFactory for persistence unit 'default'
5849 [restartedMain] WARN o.s.b.a.o.j.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
6189 [restartedMain] INFO o.s.b.a.w.s.WelcomePageHandlerMapping
– Adding welcome page template: index
6689 [restartedMain] INFO o.s.b.d.a.OptionalLiveReloadServer
– LiveReload server is running on port 35729
6714 [restartedMain] INFO o.a.coyote.http11.Http11NioProtocol
– Starting ProtocolHandler ["http-nio-8080"]
6735 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer
– Tomcat started on port(s): 8080 (http) with context path ''
6753 [restartedMain] INFO Main
– Started Pr14Application in 6.137 seconds (JVM running for 6.994)
6785 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– название метода: test
6797 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void Serv.test() выполнен за 24мс
6804 [restartedMain] INFO c.c.pr14.service.LoggingAspect
– void SomeService.someMethod() выполнен за 6мс
6806 [restartedMain] INFO Main
– Application started
13320 [http-nio-8080-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/]
– Initializing Spring DispatcherServlet 'dispatcherServlet'
13321 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet
– Initializing Servlet 'dispatcherServlet'
13325 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet
– Completed initialization in 4 ms
13517 [http-nio-8080-exec-2] INFO c.c.pr14.controllers.MainController
– silicon: works
16729 [http-nio-8080-exec-3] INFO c.c.pr14.controllers.MainController
– silicon: works
18297 [http-nio-8080-exec-9] INFO c.c.pr14.controllers.MainController
– silicon: works