-
Notifications
You must be signed in to change notification settings - Fork 1
/
readile.log
1890 lines (1884 loc) · 600 KB
/
readile.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
2022-08-11 00:03:41.539 INFO 23628 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 00:03:41.569 INFO 23628 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 00:03:41.574 INFO 23628 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 00:04:03.577 INFO 2132 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 2132 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 00:04:03.582 INFO 2132 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 00:04:03.680 INFO 2132 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 00:04:04.812 INFO 2132 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 00:04:05.066 INFO 2132 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 243 ms. Found 6 JPA repository interfaces.
2022-08-11 00:04:06.072 INFO 2132 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 00:04:06.085 INFO 2132 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 00:04:06.086 INFO 2132 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 00:04:06.455 INFO 2132 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 00:04:06.456 INFO 2132 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2775 ms
2022-08-11 00:04:06.865 INFO 2132 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 00:04:06.998 INFO 2132 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 00:04:07.264 INFO 2132 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 00:04:07.460 INFO 2132 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 00:04:07.744 INFO 2132 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 00:04:07.793 INFO 2132 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 00:04:08.330 WARN 2132 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 00:04:08.331 WARN 2132 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 00:04:09.235 INFO 2132 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 00:04:09.250 INFO 2132 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 00:04:09.322 WARN 2132 --- [JavaFX-Launcher] 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
2022-08-11 00:04:11.015 INFO 2132 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3658619e, org.springframework.security.web.context.SecurityContextPersistenceFilter@2fe1d095, org.springframework.security.web.header.HeaderWriterFilter@33acfe15, org.springframework.security.web.csrf.CsrfFilter@7b63407, org.springframework.security.web.authentication.logout.LogoutFilter@1fd14b12, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@29f5b2ab, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@d15ea97, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@6af665ce, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@51297cd0, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@28729d48, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@684ae1dd, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3edd35ab, org.springframework.security.web.session.SessionManagementFilter@6c95c4, org.springframework.security.web.access.ExceptionTranslationFilter@2ede87fb, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4e13d96a]
2022-08-11 00:04:11.177 INFO 2132 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 00:04:11.191 INFO 2132 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 8.36 seconds (JVM running for 10.935)
2022-08-11 00:07:38.430 INFO 2132 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-11 00:07:38.431 INFO 2132 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2022-08-11 00:07:38.432 INFO 2132 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2022-08-11 00:07:38.584 WARN 2132 --- [http-nio-8080-exec-1] o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [111] milliseconds.
2022-08-11 00:07:48.832 DEBUG 2132 --- [http-nio-8080-exec-4] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 00:07:48.865 DEBUG 2132 --- [http-nio-8080-exec-4] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 00:07:48.868 DEBUG 2132 --- [http-nio-8080-exec-4] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 00:07:49.844 DEBUG 2132 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:07:49.852 DEBUG 2132 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:12.115 INFO 2132 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 00:09:12.122 INFO 2132 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 00:09:12.135 INFO 2132 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 00:09:25.170 INFO 11944 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 11944 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 00:09:25.176 INFO 11944 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 00:09:25.280 INFO 11944 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 00:09:26.661 INFO 11944 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 00:09:27.041 INFO 11944 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 366 ms. Found 6 JPA repository interfaces.
2022-08-11 00:09:27.997 INFO 11944 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 00:09:28.010 INFO 11944 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 00:09:28.011 INFO 11944 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 00:09:28.263 INFO 11944 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 00:09:28.263 INFO 11944 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2982 ms
2022-08-11 00:09:28.562 INFO 11944 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 00:09:28.660 INFO 11944 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 00:09:28.910 INFO 11944 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 00:09:29.066 INFO 11944 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 00:09:29.262 INFO 11944 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 00:09:29.297 INFO 11944 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 00:09:29.665 WARN 11944 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 00:09:29.665 WARN 11944 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 00:09:30.345 INFO 11944 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 00:09:30.356 INFO 11944 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 00:09:30.418 WARN 11944 --- [JavaFX-Launcher] 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
2022-08-11 00:09:32.017 INFO 11944 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6816496d, org.springframework.security.web.context.SecurityContextPersistenceFilter@4c9a046a, org.springframework.security.web.header.HeaderWriterFilter@1a4d9b15, org.springframework.security.web.csrf.CsrfFilter@4f3f4123, org.springframework.security.web.authentication.logout.LogoutFilter@3cc7cf3d, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@6bce729a, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@64b76033, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@26fccafb, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@5ee0dabf, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@263a818e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@23b35aa9, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1ef9d439, org.springframework.security.web.session.SessionManagementFilter@41f3b5ee, org.springframework.security.web.access.ExceptionTranslationFilter@5d537a0d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@52929948]
2022-08-11 00:09:32.285 INFO 11944 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 00:09:32.303 INFO 11944 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 8.151 seconds (JVM running for 12.006)
2022-08-11 00:09:49.800 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 00:09:49.827 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 00:09:49.837 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:49.843 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 00:09:50.154 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:09:50.158 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:56.620 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:56.628 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:09:56.631 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:56.637 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:09:56.649 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select highlight0_.id as id1_3_, highlight0_.book_id as book_id3_3_, highlight0_.highlight as highligh2_3_ from highlight highlight0_ where highlight0_.book_id=?
2022-08-11 00:09:59.339 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.342 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.373 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:09:59.377 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:59.400 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:09:59.504 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.508 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.514 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:09:59.516 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:59.519 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:09:59.654 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.658 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.663 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:09:59.666 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:59.669 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:09:59.790 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.794 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.799 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:09:59.802 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:59.805 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:09:59.937 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.942 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:09:59.949 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:09:59.951 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:09:59.954 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:10:00.071 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.075 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.080 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:10:00.082 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:00.084 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:10:00.400 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.404 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.408 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:10:00.409 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:00.412 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:10:00.555 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.559 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.564 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:10:00.567 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:00.570 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:10:00.866 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.872 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:00.876 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 00:10:00.877 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:00.880 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 00:10:02.578 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:10:02.585 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:02.587 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:02.595 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_0_, bookcatego0_.category_id as category2_1_0_ from book_category bookcatego0_ where bookcatego0_.book_id=? and bookcatego0_.category_id=?
2022-08-11 00:10:02.598 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:02.600 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:02.609 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book_category (book_id, category_id) values (?, ?)
2022-08-11 00:10:02.620 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:10:02.622 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:02.624 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:02.634 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from book_category where (book_id, category_id)=(?, ?)
2022-08-11 00:10:02.641 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:02.645 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:02.648 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_0_, bookcatego0_.category_id as category2_1_0_ from book_category bookcatego0_ where bookcatego0_.book_id=? and bookcatego0_.category_id=?
2022-08-11 00:10:02.649 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:02.652 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:02.654 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book_category (book_id, category_id) values (?, ?)
2022-08-11 00:10:04.227 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:04.230 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:05.404 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:05.406 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:05.410 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.category_id=?
2022-08-11 00:10:05.412 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:05.414 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:08.652 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:08.802 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:08.806 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:08.811 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:10:08.813 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:08.815 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:10.557 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.name=?
2022-08-11 00:10:10.570 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:10.574 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.category_id=?
2022-08-11 00:10:10.575 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:10.578 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:10.583 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from book_category where (book_id, category_id)=(?, ?)
2022-08-11 00:10:10.588 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.name=?
2022-08-11 00:10:10.590 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:10.594 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_0_, category0_.category_image as category2_2_0_, category0_.name as name3_2_0_, category0_.user_id as user_id4_2_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from category category0_ left outer join user_profile user1_ on category0_.user_id=user1_.id where category0_.id=?
2022-08-11 00:10:10.600 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.category_id as category2_1_0_, bookcatego0_.book_id as book_id1_1_0_, bookcatego0_.book_id as book_id1_1_1_, bookcatego0_.category_id as category2_1_1_, book1_.id as id1_0_2_, book1_.authors as authors2_0_2_, book1_.cover_id as cover_id3_0_2_, book1_.current_page as current_4_0_2_, book1_.end_date as end_date5_0_2_, book1_.length as length6_0_2_, book1_.name as name7_0_2_, book1_.rating as rating8_0_2_, book1_.start_date as start_da9_0_2_, book1_.status as status10_0_2_, book1_.user_id as user_id11_0_2_, user2_.id as id1_5_3_, user2_.email as email2_5_3_, user2_.name as name3_5_3_, user2_.profile_image as profile_4_5_3_, user2_.registration as registra5_5_3_, user2_.theme as theme6_5_3_ from book_category bookcatego0_ inner join book book1_ on bookcatego0_.book_id=book1_.id left outer join user_profile user2_ on book1_.user_id=user2_.id where bookcatego0_.category_id=?
2022-08-11 00:10:10.606 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from category where id=?
2022-08-11 00:10:10.626 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:12.185 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:12.189 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:12.987 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:12.990 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:12.992 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:10:12.995 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select highlight0_.id as id1_3_, highlight0_.book_id as book_id3_3_, highlight0_.highlight as highligh2_3_ from highlight highlight0_ where highlight0_.book_id=?
2022-08-11 00:10:14.856 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:14.862 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 00:10:14.874 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:14.880 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 00:10:14.884 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select highlights0_.book_id as book_id3_3_0_, highlights0_.id as id1_3_0_, highlights0_.id as id1_3_1_, highlights0_.book_id as book_id3_3_1_, highlights0_.highlight as highligh2_3_1_ from highlight highlights0_ where highlights0_.book_id=?
2022-08-11 00:10:14.886 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from book where id=?
2022-08-11 00:10:14.971 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:16.222 WARN 11944 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 00:10:16.223 WARN 11944 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 00:10:26.174 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 00:10:26.179 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:26.185 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_0_, logininfo0_.password as password2_4_0_, logininfo0_.user_id as user_id3_4_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from login_info logininfo0_ left outer join user_profile user1_ on logininfo0_.user_id=user1_.id where logininfo0_.id=?
2022-08-11 00:10:26.188 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from login_info where id=?
2022-08-11 00:10:26.193 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:26.196 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 00:10:26.199 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:26.201 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 00:10:26.207 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 00:10:26.209 DEBUG 11944 --- [JavaFX Application Thread] org.hibernate.SQL : delete from user_profile where id=?
2022-08-11 00:10:33.798 INFO 11944 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 00:10:33.802 INFO 11944 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 00:10:33.812 INFO 11944 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 14:45:15.979 INFO 4580 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 4580 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 14:45:15.983 INFO 4580 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 14:45:16.075 INFO 4580 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 14:45:16.363 WARN 4580 --- [JavaFX-Launcher] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
2022-08-11 14:45:16.424 ERROR 4580 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:164) ~[spring-boot-2.6.7.jar:2.6.7]
at com.readile.readile.SpringBootJavaFx.init(SpringBootJavaFx.java:30) ~[classes/:na]
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:825) ~[javafx-graphics-18.0.1-win.jar:na]
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:196) ~[javafx-graphics-18.0.1-win.jar:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) ~[spring-context-5.3.19.jar:5.3.19]
... 15 common frames omitted
2022-08-11 14:45:26.129 INFO 22544 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 22544 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 14:45:26.134 INFO 22544 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 14:45:26.222 INFO 22544 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 14:45:26.507 WARN 22544 --- [JavaFX-Launcher] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
2022-08-11 14:45:26.568 ERROR 22544 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:164) ~[spring-boot-2.6.7.jar:2.6.7]
at com.readile.readile.SpringBootJavaFx.init(SpringBootJavaFx.java:30) ~[classes/:na]
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:825) ~[javafx-graphics-18.0.1-win.jar:na]
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:196) ~[javafx-graphics-18.0.1-win.jar:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) ~[spring-context-5.3.19.jar:5.3.19]
... 15 common frames omitted
2022-08-11 14:45:42.480 INFO 10836 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 10836 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 14:45:42.484 INFO 10836 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 14:45:42.566 INFO 10836 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 14:45:42.860 WARN 10836 --- [JavaFX-Launcher] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
2022-08-11 14:45:42.913 ERROR 10836 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.readile.readile.ReadileApp]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar:2.6.7]
at org.springframework.boot.builder.SpringApplicationBuilder.run(SpringApplicationBuilder.java:164) ~[spring-boot-2.6.7.jar:2.6.7]
at com.readile.readile.SpringBootJavaFx.init(SpringBootJavaFx.java:30) ~[classes/:na]
at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:825) ~[javafx-graphics-18.0.1-win.jar:na]
at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:196) ~[javafx-graphics-18.0.1-win.jar:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'bookCategoryService' for bean class [com.readile.readile.services.implementation.book.BookCategoryService] conflicts with existing, non-compatible bean definition of same name and class [com.readile.readile.services.implementation.BookCategoryService]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) ~[spring-context-5.3.19.jar:5.3.19]
at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) ~[spring-context-5.3.19.jar:5.3.19]
... 15 common frames omitted
2022-08-11 14:49:20.028 INFO 21748 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 21748 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 14:49:20.032 INFO 21748 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 14:49:20.116 INFO 21748 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 14:49:21.756 INFO 21748 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 14:49:22.219 INFO 21748 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 439 ms. Found 6 JPA repository interfaces.
2022-08-11 14:49:23.451 INFO 21748 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 14:49:23.471 INFO 21748 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 14:49:23.471 INFO 21748 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 14:49:23.827 INFO 21748 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 14:49:23.827 INFO 21748 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3710 ms
2022-08-11 14:49:24.168 INFO 21748 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 14:49:24.308 INFO 21748 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 14:49:24.693 INFO 21748 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 14:49:24.885 INFO 21748 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 14:49:25.130 INFO 21748 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 14:49:25.180 INFO 21748 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 14:49:25.699 WARN 21748 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 14:49:25.699 WARN 21748 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 14:49:26.695 INFO 21748 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 14:49:26.711 INFO 21748 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 14:49:26.782 WARN 21748 --- [JavaFX-Launcher] 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
2022-08-11 14:49:28.864 INFO 21748 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@759a024b, org.springframework.security.web.context.SecurityContextPersistenceFilter@6a18ffd2, org.springframework.security.web.header.HeaderWriterFilter@111cb55f, org.springframework.security.web.csrf.CsrfFilter@40534a2b, org.springframework.security.web.authentication.logout.LogoutFilter@5d504fc2, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@31192d3a, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@65bd485, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@491b59fc, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@44055632, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4e1ecf6, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@18c647af, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3dd64765, org.springframework.security.web.session.SessionManagementFilter@311936ae, org.springframework.security.web.access.ExceptionTranslationFilter@3e5ebe36, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@75d4566d]
2022-08-11 14:49:29.023 INFO 21748 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 14:49:29.034 INFO 21748 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 9.827 seconds (JVM running for 11.758)
2022-08-11 14:49:47.562 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 14:49:47.846 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 14:49:47.861 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : insert into login_info (password, user_id) values (?, ?)
2022-08-11 14:49:47.867 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 14:49:48.407 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 14:50:03.027 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 14:50:03.469 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 14:50:03.484 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 14:50:35.737 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 14:50:36.157 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 14:50:36.163 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 14:50:40.151 WARN 21748 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 14:50:40.155 WARN 21748 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 14:50:43.219 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 14:50:43.224 DEBUG 21748 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 14:54:14.264 INFO 21748 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 14:54:14.291 INFO 21748 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 14:54:14.328 INFO 21748 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 14:54:26.336 INFO 13680 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 13680 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 14:54:26.345 INFO 13680 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 14:54:26.487 INFO 13680 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 14:54:28.014 INFO 13680 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 14:54:28.436 INFO 13680 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 400 ms. Found 6 JPA repository interfaces.
2022-08-11 14:54:29.516 INFO 13680 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 14:54:29.529 INFO 13680 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 14:54:29.530 INFO 13680 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 14:54:29.812 INFO 13680 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 14:54:29.813 INFO 13680 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3324 ms
2022-08-11 14:54:30.178 INFO 13680 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 14:54:30.257 INFO 13680 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 14:54:30.529 INFO 13680 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 14:54:30.708 INFO 13680 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 14:54:31.001 INFO 13680 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 14:54:31.050 INFO 13680 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 14:54:31.620 WARN 13680 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 14:54:31.620 WARN 13680 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 14:54:32.441 INFO 13680 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 14:54:32.456 INFO 13680 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 14:54:32.531 WARN 13680 --- [JavaFX-Launcher] 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
2022-08-11 14:54:39.060 INFO 13680 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7e0ba4f, org.springframework.security.web.context.SecurityContextPersistenceFilter@4927130b, org.springframework.security.web.header.HeaderWriterFilter@21c350ca, org.springframework.security.web.csrf.CsrfFilter@7af67c87, org.springframework.security.web.authentication.logout.LogoutFilter@4e9d6a82, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@6a59bef0, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@1ce942c7, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@7f083a14, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@6ab8cd17, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@60ed2ee2, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@60d00942, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@19d50d4e, org.springframework.security.web.session.SessionManagementFilter@3e7bd3a5, org.springframework.security.web.access.ExceptionTranslationFilter@72340f24, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1aeca611]
2022-08-11 14:54:39.765 INFO 13680 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 14:54:39.826 INFO 13680 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 14.639 seconds (JVM running for 17.3)
2022-08-11 14:56:43.425 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 14:56:43.627 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 14:56:43.673 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 14:56:43.712 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 14:56:45.316 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 14:56:45.327 DEBUG 13680 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 14:57:47.938 WARN 13680 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=45s295ms519µs700ns).
2022-08-11 15:01:40.146 INFO 13680 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:01:40.155 INFO 13680 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:01:40.171 INFO 13680 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:01:51.504 INFO 1876 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 1876 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:01:51.508 INFO 1876 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:01:51.594 INFO 1876 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:01:52.905 INFO 1876 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:01:53.170 INFO 1876 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 252 ms. Found 6 JPA repository interfaces.
2022-08-11 15:01:54.311 INFO 1876 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:01:54.332 INFO 1876 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:01:54.333 INFO 1876 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:01:54.660 INFO 1876 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:01:54.660 INFO 1876 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3064 ms
2022-08-11 15:01:55.017 INFO 1876 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:01:55.115 INFO 1876 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:01:55.365 INFO 1876 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:01:55.502 INFO 1876 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:01:55.765 INFO 1876 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:01:55.819 INFO 1876 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:01:56.400 WARN 1876 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:01:56.400 WARN 1876 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:01:57.159 INFO 1876 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:01:57.176 INFO 1876 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:01:57.254 WARN 1876 --- [JavaFX-Launcher] 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
2022-08-11 15:01:59.014 INFO 1876 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3e9265e1, org.springframework.security.web.context.SecurityContextPersistenceFilter@1de2fec1, org.springframework.security.web.header.HeaderWriterFilter@63bb15eb, org.springframework.security.web.csrf.CsrfFilter@6a5c759f, org.springframework.security.web.authentication.logout.LogoutFilter@cc1dbe, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@6bdb4604, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@7adb6d40, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@76e222ac, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@539f4eea, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@18a0d110, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6fe3f2b, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3c3c1216, org.springframework.security.web.session.SessionManagementFilter@6fffb0ba, org.springframework.security.web.access.ExceptionTranslationFilter@6a2c669d, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3dd3dece]
2022-08-11 15:01:59.218 INFO 1876 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:01:59.255 INFO 1876 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 8.433 seconds (JVM running for 10.185)
2022-08-11 15:02:13.649 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:02:13.691 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:02:13.701 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:02:13.710 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:02:14.115 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:02:14.122 DEBUG 1876 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:03:49.060 INFO 1876 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:03:49.069 INFO 1876 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:03:49.092 INFO 1876 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:03:57.551 INFO 21568 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 21568 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:03:57.557 INFO 21568 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:03:57.701 INFO 21568 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:03:59.308 INFO 21568 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:03:59.609 INFO 21568 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 284 ms. Found 6 JPA repository interfaces.
2022-08-11 15:04:00.695 INFO 21568 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:04:00.708 INFO 21568 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:04:00.709 INFO 21568 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:04:01.070 INFO 21568 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:04:01.070 INFO 21568 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3367 ms
2022-08-11 15:04:01.437 INFO 21568 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:04:01.516 INFO 21568 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:04:01.797 INFO 21568 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:04:01.984 INFO 21568 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:04:02.276 INFO 21568 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:04:02.336 INFO 21568 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:04:02.902 WARN 21568 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:04:02.902 WARN 21568 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:04:03.808 INFO 21568 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:04:03.833 INFO 21568 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:04:03.935 WARN 21568 --- [JavaFX-Launcher] 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
2022-08-11 15:04:11.144 INFO 21568 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2069bdd6, org.springframework.security.web.context.SecurityContextPersistenceFilter@2550315b, org.springframework.security.web.header.HeaderWriterFilter@7128c682, org.springframework.security.web.csrf.CsrfFilter@181d8765, org.springframework.security.web.authentication.logout.LogoutFilter@56a57c1a, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@777a87f9, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@2a1850c9, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@15143d42, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@331bbedc, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@73d0a3b8, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1d425147, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@116e223f, org.springframework.security.web.session.SessionManagementFilter@733c28e8, org.springframework.security.web.access.ExceptionTranslationFilter@41d9853, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6ee2a503]
2022-08-11 15:04:11.504 INFO 21568 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:04:11.533 INFO 21568 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 14.844 seconds (JVM running for 17.028)
2022-08-11 15:04:31.059 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:04:31.263 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:04:31.319 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:04:31.360 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:04:33.026 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:04:33.041 DEBUG 21568 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:05:12.080 INFO 21568 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:05:12.086 INFO 21568 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:05:12.103 INFO 21568 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:05:20.943 INFO 20244 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 20244 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:05:20.949 INFO 20244 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:05:21.043 INFO 20244 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:05:22.455 INFO 20244 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:05:22.799 INFO 20244 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 331 ms. Found 6 JPA repository interfaces.
2022-08-11 15:05:23.983 INFO 20244 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:05:24.001 INFO 20244 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:05:24.002 INFO 20244 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:05:24.354 INFO 20244 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:05:24.355 INFO 20244 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3310 ms
2022-08-11 15:05:24.655 INFO 20244 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:05:24.753 INFO 20244 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:05:25.047 INFO 20244 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:05:25.212 INFO 20244 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:05:25.511 INFO 20244 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:05:25.561 INFO 20244 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:05:26.072 WARN 20244 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:05:26.072 WARN 20244 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:05:27.010 INFO 20244 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:05:27.030 INFO 20244 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:05:27.126 WARN 20244 --- [JavaFX-Launcher] 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
2022-08-11 15:05:29.096 INFO 20244 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@149ff3f5, org.springframework.security.web.context.SecurityContextPersistenceFilter@41d9853, org.springframework.security.web.header.HeaderWriterFilter@30aef22d, org.springframework.security.web.csrf.CsrfFilter@363c86fc, org.springframework.security.web.authentication.logout.LogoutFilter@72866cc0, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@6277839b, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@5e2714ae, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@73d0a3b8, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@777a87f9, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7128c682, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@61b9bc0f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2a1850c9, org.springframework.security.web.session.SessionManagementFilter@700741d8, org.springframework.security.web.access.ExceptionTranslationFilter@5139a512, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5148617a]
2022-08-11 15:05:29.258 INFO 20244 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:05:29.281 INFO 20244 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 9.207 seconds (JVM running for 11.67)
2022-08-11 15:05:47.121 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:05:47.173 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:05:47.185 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:05:47.194 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:05:47.871 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:05:47.885 DEBUG 20244 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:06:27.225 WARN 20244 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1m1s611ms372µs400ns).
2022-08-11 15:09:24.211 INFO 20244 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:09:24.234 INFO 20244 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:09:24.267 INFO 20244 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:10:08.282 INFO 21044 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 21044 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:10:08.287 INFO 21044 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:10:08.372 INFO 21044 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:10:09.607 INFO 21044 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:10:09.867 INFO 21044 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 248 ms. Found 6 JPA repository interfaces.
2022-08-11 15:10:10.861 INFO 21044 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:10:10.894 INFO 21044 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:10:10.896 INFO 21044 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:10:11.314 INFO 21044 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:10:11.314 INFO 21044 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2941 ms
2022-08-11 15:10:11.672 INFO 21044 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:10:11.771 INFO 21044 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:10:12.043 INFO 21044 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:10:12.210 INFO 21044 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:10:12.441 INFO 21044 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:10:12.491 INFO 21044 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:10:13.005 WARN 21044 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:10:13.005 WARN 21044 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:10:13.799 INFO 21044 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:10:13.820 INFO 21044 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:10:13.880 WARN 21044 --- [JavaFX-Launcher] 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
2022-08-11 15:10:15.758 INFO 21044 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@78579b4a, org.springframework.security.web.context.SecurityContextPersistenceFilter@4f15f577, org.springframework.security.web.header.HeaderWriterFilter@391b46fc, org.springframework.security.web.csrf.CsrfFilter@1daf4d38, org.springframework.security.web.authentication.logout.LogoutFilter@732e084a, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@6fe5db7f, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@668c7f8d, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@4147ae08, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@653dc8f5, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3dc8beb8, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@570f7d7e, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@367e3500, org.springframework.security.web.session.SessionManagementFilter@1046bd27, org.springframework.security.web.access.ExceptionTranslationFilter@46cf2d25, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4291968b]
2022-08-11 15:10:15.954 INFO 21044 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:10:15.972 INFO 21044 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 8.419 seconds (JVM running for 10.286)
2022-08-11 15:10:44.292 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:10:44.337 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:10:44.349 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:10:44.358 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:10:44.787 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:10:44.792 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:11:09.674 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:11:10.116 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:11:10.119 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:11:20.636 WARN 21044 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:11:20.637 WARN 21044 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:11:42.990 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:11:43.427 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:11:43.432 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:12:52.315 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:12:52.729 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:12:52.732 DEBUG 21044 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:14:08.141 INFO 21044 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:14:08.152 INFO 21044 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:14:08.178 INFO 21044 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:14:21.370 INFO 25268 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 25268 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:14:21.375 INFO 25268 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:14:21.460 INFO 25268 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:14:22.695 INFO 25268 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:14:22.957 INFO 25268 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 250 ms. Found 6 JPA repository interfaces.
2022-08-11 15:14:24.012 INFO 25268 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:14:24.033 INFO 25268 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:14:24.034 INFO 25268 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:14:24.328 INFO 25268 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:14:24.329 INFO 25268 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2867 ms
2022-08-11 15:14:24.759 INFO 25268 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:14:24.857 INFO 25268 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:14:25.039 INFO 25268 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:14:25.169 INFO 25268 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:14:25.390 INFO 25268 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:14:25.424 INFO 25268 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:14:25.904 WARN 25268 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:14:25.905 WARN 25268 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:14:26.751 INFO 25268 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:14:26.766 INFO 25268 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:14:26.807 WARN 25268 --- [JavaFX-Launcher] 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
2022-08-11 15:14:28.779 INFO 25268 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3083b362, org.springframework.security.web.context.SecurityContextPersistenceFilter@1c8bca61, org.springframework.security.web.header.HeaderWriterFilter@79649d49, org.springframework.security.web.csrf.CsrfFilter@6706c15a, org.springframework.security.web.authentication.logout.LogoutFilter@55d84669, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@7a438e30, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@62aed1d2, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@2ad3f788, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@31cf9e63, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@76cd3889, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3b696e37, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6ce12115, org.springframework.security.web.session.SessionManagementFilter@25120211, org.springframework.security.web.access.ExceptionTranslationFilter@2e1ac415, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@256e5aff]
2022-08-11 15:14:29.003 INFO 25268 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:14:29.016 INFO 25268 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 8.422 seconds (JVM running for 10.504)
2022-08-11 15:16:09.644 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:16:09.675 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:16:09.684 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:16:09.692 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:16:10.115 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:16:10.123 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:16:34.223 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:16:34.225 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:16:34.903 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:16:34.904 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:16:44.224 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 15:16:45.068 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 15:16:45.096 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 15:16:45.103 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:16:45.137 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 15:16:45.214 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 15:16:45.229 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 15:16:45.240 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 15:16:45.270 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select highlight0_.id as id1_3_, highlight0_.book_id as book_id3_3_, highlight0_.highlight as highligh2_3_ from highlight highlight0_ where highlight0_.book_id=?
2022-08-11 15:16:46.463 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:16:46.467 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:17:35.886 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:17:35.887 WARN 25268 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:17:37.801 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:17:37.807 DEBUG 25268 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:21:34.162 INFO 25268 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:21:34.164 INFO 25268 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:21:34.170 INFO 25268 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:21:42.344 INFO 15028 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 15028 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:21:42.347 INFO 15028 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:21:42.394 INFO 15028 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:21:43.002 INFO 15028 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:21:43.141 INFO 15028 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 134 ms. Found 6 JPA repository interfaces.
2022-08-11 15:21:43.595 INFO 15028 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:21:43.602 INFO 15028 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:21:43.602 INFO 15028 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:21:43.716 INFO 15028 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:21:43.716 INFO 15028 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1321 ms
2022-08-11 15:21:43.855 INFO 15028 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:21:43.889 INFO 15028 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:21:43.998 INFO 15028 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:21:44.079 INFO 15028 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:21:44.198 INFO 15028 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:21:44.220 INFO 15028 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:21:44.440 WARN 15028 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:21:44.441 WARN 15028 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:21:44.790 INFO 15028 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:21:44.797 INFO 15028 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:21:44.829 WARN 15028 --- [JavaFX-Launcher] 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
2022-08-11 15:21:45.626 INFO 15028 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@685b627e, org.springframework.security.web.context.SecurityContextPersistenceFilter@715b83c7, org.springframework.security.web.header.HeaderWriterFilter@646fbb13, org.springframework.security.web.csrf.CsrfFilter@29297b41, org.springframework.security.web.authentication.logout.LogoutFilter@53bbd169, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@3bad9834, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@5f3e50ca, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@1ec631d7, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@68efee70, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5b27141e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@40272c2c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@568648ce, org.springframework.security.web.session.SessionManagementFilter@6a5c759f, org.springframework.security.web.access.ExceptionTranslationFilter@2a49aae2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@33da4177]
2022-08-11 15:21:45.710 INFO 15028 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:21:45.718 INFO 15028 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.75 seconds (JVM running for 6.132)
2022-08-11 15:21:55.979 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:21:55.997 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:21:56.001 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:21:56.004 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:21:56.194 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:21:56.199 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:22:33.472 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:22:33.895 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:22:33.898 DEBUG 15028 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:22:51.580 INFO 15028 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:22:51.582 INFO 15028 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:22:51.586 INFO 15028 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:23:20.546 INFO 3076 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 3076 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:23:20.549 INFO 3076 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:23:20.599 INFO 3076 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:23:21.185 INFO 3076 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:23:21.328 INFO 3076 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 138 ms. Found 6 JPA repository interfaces.
2022-08-11 15:23:21.775 INFO 3076 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:23:21.781 INFO 3076 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:23:21.781 INFO 3076 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:23:21.916 INFO 3076 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:23:21.916 INFO 3076 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1317 ms
2022-08-11 15:23:22.058 INFO 3076 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:23:22.091 INFO 3076 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:23:22.195 INFO 3076 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:23:22.287 INFO 3076 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:23:22.404 INFO 3076 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:23:22.423 INFO 3076 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:23:22.641 WARN 3076 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:23:22.641 WARN 3076 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:23:22.994 INFO 3076 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:23:23.000 INFO 3076 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:23:23.027 WARN 3076 --- [JavaFX-Launcher] 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
2022-08-11 15:23:23.798 INFO 3076 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1b754a27, org.springframework.security.web.context.SecurityContextPersistenceFilter@59a53929, org.springframework.security.web.header.HeaderWriterFilter@1de2fec1, org.springframework.security.web.csrf.CsrfFilter@5b27141e, org.springframework.security.web.authentication.logout.LogoutFilter@3d4cb000, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@1f02aa2c, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@3e9265e1, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@4bc614d9, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@32b4afbd, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@b4387b3, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2c56b4bd, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6ec4b75f, org.springframework.security.web.session.SessionManagementFilter@18a0d110, org.springframework.security.web.access.ExceptionTranslationFilter@6fffb0ba, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@796683cf]
2022-08-11 15:23:23.884 INFO 3076 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:23:23.892 INFO 3076 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.741 seconds (JVM running for 4.922)
2022-08-11 15:23:34.015 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:23:34.033 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:23:34.038 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:23:34.041 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:23:34.237 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:23:34.241 DEBUG 3076 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:25:52.163 INFO 3076 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:25:52.165 INFO 3076 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:25:52.170 INFO 3076 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:25:59.357 INFO 25520 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 25520 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:25:59.359 INFO 25520 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:25:59.408 INFO 25520 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:25:59.977 INFO 25520 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:26:00.116 INFO 25520 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 134 ms. Found 6 JPA repository interfaces.
2022-08-11 15:26:00.574 INFO 25520 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:26:00.581 INFO 25520 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:26:00.581 INFO 25520 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:26:00.710 INFO 25520 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:26:00.710 INFO 25520 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1302 ms
2022-08-11 15:26:00.855 INFO 25520 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:26:00.894 INFO 25520 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:26:01.004 INFO 25520 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:26:01.089 INFO 25520 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:26:01.204 INFO 25520 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:26:01.224 INFO 25520 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:26:01.437 WARN 25520 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:26:01.437 WARN 25520 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:26:01.796 INFO 25520 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:26:01.803 INFO 25520 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:26:01.829 WARN 25520 --- [JavaFX-Launcher] 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
2022-08-11 15:26:02.605 INFO 25520 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@36e58c77, org.springframework.security.web.context.SecurityContextPersistenceFilter@53bbd169, org.springframework.security.web.header.HeaderWriterFilter@264db3ae, org.springframework.security.web.csrf.CsrfFilter@52de7357, org.springframework.security.web.authentication.logout.LogoutFilter@5d8d67e2, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@2e582285, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@1f02aa2c, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@2c56b4bd, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@1b754a27, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@15f5fc4c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5ba6df85, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@32b4afbd, org.springframework.security.web.session.SessionManagementFilter@a48ca83, org.springframework.security.web.access.ExceptionTranslationFilter@66ee2a74, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5ae013f3]
2022-08-11 15:26:02.695 INFO 25520 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:26:02.702 INFO 25520 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.737 seconds (JVM running for 4.929)
2022-08-11 15:26:12.825 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:26:12.842 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:26:12.846 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:26:12.850 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:26:13.026 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:26:13.031 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:26:42.407 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:26:42.408 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:26:44.943 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:26:44.946 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:26:49.408 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:26:49.408 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:26:51.237 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:26:51.241 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:29:30.597 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:29:30.599 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:29:40.375 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:29:40.805 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:29:40.807 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:29:47.220 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:29:47.220 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:29:52.752 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:29:52.754 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:29:52.755 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:29:52.756 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:29:52.804 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:29:52.806 DEBUG 25520 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:30:17.443 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:30:17.443 WARN 25520 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 15:30:23.543 INFO 25520 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:30:23.545 INFO 25520 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:30:23.550 INFO 25520 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:30:31.874 INFO 20092 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 20092 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:30:31.877 INFO 20092 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:30:31.926 INFO 20092 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:30:32.523 INFO 20092 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:30:32.662 INFO 20092 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 133 ms. Found 6 JPA repository interfaces.
2022-08-11 15:30:33.109 INFO 20092 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:30:33.115 INFO 20092 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:30:33.116 INFO 20092 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:30:33.241 INFO 20092 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:30:33.242 INFO 20092 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1315 ms
2022-08-11 15:30:33.395 INFO 20092 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:30:33.429 INFO 20092 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:30:33.535 INFO 20092 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:30:33.624 INFO 20092 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:30:33.737 INFO 20092 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:30:33.756 INFO 20092 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:30:33.972 WARN 20092 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:30:33.972 WARN 20092 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:30:34.323 INFO 20092 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:30:34.331 INFO 20092 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:30:34.356 WARN 20092 --- [JavaFX-Launcher] 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
2022-08-11 15:30:35.149 INFO 20092 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5213d649, org.springframework.security.web.context.SecurityContextPersistenceFilter@4c4fa7a0, org.springframework.security.web.header.HeaderWriterFilter@15f5fc4c, org.springframework.security.web.csrf.CsrfFilter@40272c2c, org.springframework.security.web.authentication.logout.LogoutFilter@641557b0, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@1b754a27, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@32b4afbd, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@21d75cab, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@1926fd1b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2c56b4bd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@75436a4d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2d8c58d3, org.springframework.security.web.session.SessionManagementFilter@6fe3f2b, org.springframework.security.web.access.ExceptionTranslationFilter@53bbd169, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1cd85a8c]
2022-08-11 15:30:35.235 INFO 20092 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:30:35.242 INFO 20092 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.776 seconds (JVM running for 4.739)
2022-08-11 15:30:47.278 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:30:47.296 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:30:47.301 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:30:47.304 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:30:47.485 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:30:47.491 DEBUG 20092 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:31:40.469 INFO 20092 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:31:40.472 INFO 20092 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:31:40.480 INFO 20092 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:36:52.190 INFO 15872 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 15872 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:36:52.193 INFO 15872 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:36:52.241 INFO 15872 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:36:52.809 INFO 15872 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:36:52.939 INFO 15872 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 124 ms. Found 6 JPA repository interfaces.
2022-08-11 15:36:53.374 INFO 15872 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:36:53.380 INFO 15872 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:36:53.380 INFO 15872 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:36:53.494 INFO 15872 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:36:53.494 INFO 15872 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1252 ms
2022-08-11 15:36:53.636 INFO 15872 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:36:53.670 INFO 15872 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:36:53.783 INFO 15872 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:36:53.869 INFO 15872 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:36:53.987 INFO 15872 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:36:54.007 INFO 15872 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:36:54.216 WARN 15872 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:36:54.217 WARN 15872 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:36:54.578 INFO 15872 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:36:54.586 INFO 15872 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:36:54.615 WARN 15872 --- [JavaFX-Launcher] 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
2022-08-11 15:36:55.383 INFO 15872 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@134deb4a, org.springframework.security.web.context.SecurityContextPersistenceFilter@2b028981, org.springframework.security.web.header.HeaderWriterFilter@7658b16e, org.springframework.security.web.csrf.CsrfFilter@4a3ad9cd, org.springframework.security.web.authentication.logout.LogoutFilter@5abfcf3f, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@59399795, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@1aab4847, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@5eb477de, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@112db948, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6e4506bd, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5cb58cb9, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@71eaeeea, org.springframework.security.web.session.SessionManagementFilter@49f662b3, org.springframework.security.web.access.ExceptionTranslationFilter@3a7b11a0, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@e377e77]
2022-08-11 15:36:55.470 INFO 15872 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:36:55.478 INFO 15872 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.676 seconds (JVM running for 4.761)
2022-08-11 15:37:18.144 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 15:37:18.262 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:37:18.274 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : insert into login_info (password, user_id) values (?, ?)
2022-08-11 15:37:18.279 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:37:18.473 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:37:29.414 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:37:29.832 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:37:29.837 DEBUG 15872 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:37:29.899 WARN 15872 --- [JavaFX Application Thread] javafx.css : Error loading image: file:/data/0.23911474898740348.png
2022-08-11 15:39:02.768 INFO 15872 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:39:02.770 INFO 15872 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:39:02.775 INFO 15872 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:39:09.147 INFO 2428 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 2428 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:39:09.149 INFO 2428 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:39:09.201 INFO 2428 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:39:09.803 INFO 2428 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:39:09.939 INFO 2428 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 131 ms. Found 6 JPA repository interfaces.
2022-08-11 15:39:10.381 INFO 2428 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:39:10.387 INFO 2428 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:39:10.387 INFO 2428 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:39:10.506 INFO 2428 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:39:10.506 INFO 2428 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1304 ms
2022-08-11 15:39:10.649 INFO 2428 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:39:10.683 INFO 2428 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:39:10.792 INFO 2428 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:39:10.877 INFO 2428 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:39:10.993 INFO 2428 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:39:11.013 INFO 2428 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:39:11.230 WARN 2428 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:39:11.231 WARN 2428 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:39:11.596 INFO 2428 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:39:11.606 INFO 2428 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:39:11.635 WARN 2428 --- [JavaFX-Launcher] 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
2022-08-11 15:39:12.430 INFO 2428 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7fb01ad6, org.springframework.security.web.context.SecurityContextPersistenceFilter@5c8bcd09, org.springframework.security.web.header.HeaderWriterFilter@5cb58cb9, org.springframework.security.web.csrf.CsrfFilter@79e5ec07, org.springframework.security.web.authentication.logout.LogoutFilter@7247360f, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@2775ba96, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@571a255a, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@57205016, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@3488db4c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1b2d3ba0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2a51f63d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2c902818, org.springframework.security.web.session.SessionManagementFilter@32510741, org.springframework.security.web.access.ExceptionTranslationFilter@2958aa3b, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4c6d80ae]
2022-08-11 15:39:12.520 INFO 2428 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:39:12.529 INFO 2428 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.772 seconds (JVM running for 4.854)
2022-08-11 15:39:29.450 DEBUG 2428 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 15:39:29.593 DEBUG 2428 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:39:29.601 DEBUG 2428 --- [JavaFX Application Thread] org.hibernate.SQL : insert into login_info (password, user_id) values (?, ?)
2022-08-11 15:39:29.605 DEBUG 2428 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:39:29.831 DEBUG 2428 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:40:51.488 INFO 2428 --- [SpringApplicationShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:40:51.490 INFO 2428 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:40:51.495 INFO 2428 --- [SpringApplicationShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:40:57.789 INFO 4172 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 4172 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:40:57.791 INFO 4172 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:40:57.838 INFO 4172 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:40:58.430 INFO 4172 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:40:58.565 INFO 4172 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 129 ms. Found 6 JPA repository interfaces.
2022-08-11 15:40:59.011 INFO 4172 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:40:59.018 INFO 4172 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:40:59.018 INFO 4172 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:40:59.138 INFO 4172 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:40:59.138 INFO 4172 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1299 ms
2022-08-11 15:40:59.290 INFO 4172 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:40:59.324 INFO 4172 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:40:59.432 INFO 4172 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:40:59.520 INFO 4172 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:40:59.628 INFO 4172 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:40:59.648 INFO 4172 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:40:59.856 WARN 4172 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:40:59.857 WARN 4172 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:41:00.221 INFO 4172 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:41:00.230 INFO 4172 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:41:00.270 WARN 4172 --- [JavaFX-Launcher] 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
2022-08-11 15:41:01.158 INFO 4172 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@7fb01ad6, org.springframework.security.web.context.SecurityContextPersistenceFilter@5c8bcd09, org.springframework.security.web.header.HeaderWriterFilter@5cb58cb9, org.springframework.security.web.csrf.CsrfFilter@79e5ec07, org.springframework.security.web.authentication.logout.LogoutFilter@7247360f, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@2775ba96, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@571a255a, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@57205016, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@3488db4c, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1b2d3ba0, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2a51f63d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2c902818, org.springframework.security.web.session.SessionManagementFilter@32510741, org.springframework.security.web.access.ExceptionTranslationFilter@2958aa3b, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4c6d80ae]
2022-08-11 15:41:01.252 INFO 4172 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:41:01.266 INFO 4172 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.854 seconds (JVM running for 4.863)
2022-08-11 15:41:11.480 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:41:11.502 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:41:11.507 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:41:11.511 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:41:11.733 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:41:14.549 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:41:19.000 WARN 4172 --- [JavaFX Application Thread] .d.DefaultDnsServerAddressStreamProvider : Default DNS servers: [/8.8.8.8:53, /8.8.4.4:53] (Google Public DNS as a fallback)
2022-08-11 15:42:24.436 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:42:58.244 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:43:09.733 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:43:10.166 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:43:10.168 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:43:25.608 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:43:26.021 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:43:26.022 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:43:40.284 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:43:40.693 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:43:40.694 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:43:54.763 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:43:55.188 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:43:55.189 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:44:18.775 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 15:44:19.203 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:44:19.205 DEBUG 4172 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:44:24.892 INFO 4172 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:44:24.894 INFO 4172 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:44:24.903 INFO 4172 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 15:44:28.582 INFO 24068 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 24068 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 15:44:28.584 INFO 24068 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 15:44:28.627 INFO 24068 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 15:44:29.201 INFO 24068 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 15:44:29.345 INFO 24068 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 138 ms. Found 6 JPA repository interfaces.
2022-08-11 15:44:29.772 INFO 24068 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 15:44:29.778 INFO 24068 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 15:44:29.778 INFO 24068 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 15:44:29.911 INFO 24068 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 15:44:29.911 INFO 24068 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1284 ms
2022-08-11 15:44:30.057 INFO 24068 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 15:44:30.091 INFO 24068 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 15:44:30.203 INFO 24068 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 15:44:30.293 INFO 24068 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 15:44:30.405 INFO 24068 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 15:44:30.424 INFO 24068 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 15:44:30.648 WARN 24068 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:44:30.648 WARN 24068 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 15:44:31.008 INFO 24068 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 15:44:31.015 INFO 24068 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:44:31.045 WARN 24068 --- [JavaFX-Launcher] 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
2022-08-11 15:44:31.835 INFO 24068 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@656bb639, org.springframework.security.web.context.SecurityContextPersistenceFilter@1b45ef41, org.springframework.security.web.header.HeaderWriterFilter@68750af9, org.springframework.security.web.csrf.CsrfFilter@6d127b98, org.springframework.security.web.authentication.logout.LogoutFilter@b4387b3, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@12f5944f, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@454ed21d, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@27553f78, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@56107078, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@17c88b1c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5e6a2ed5, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@411b98a4, org.springframework.security.web.session.SessionManagementFilter@52de7357, org.springframework.security.web.access.ExceptionTranslationFilter@d25c063, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4089e092]
2022-08-11 15:44:31.923 INFO 24068 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 15:44:31.930 INFO 24068 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.745 seconds (JVM running for 4.943)
2022-08-11 15:44:44.483 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:44:44.508 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 15:44:44.513 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:44:44.517 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 15:44:44.744 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 15:44:44.748 DEBUG 24068 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 15:44:53.404 INFO 24068 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 15:44:53.407 INFO 24068 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 15:44:53.414 INFO 24068 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 16:19:59.245 INFO 10924 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 10924 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 16:19:59.249 INFO 10924 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 16:19:59.315 INFO 10924 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 16:20:00.119 INFO 10924 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 16:20:00.319 INFO 10924 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 191 ms. Found 6 JPA repository interfaces.
2022-08-11 16:20:00.899 INFO 10924 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 16:20:00.911 INFO 10924 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 16:20:00.911 INFO 10924 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 16:20:01.069 INFO 10924 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 16:20:01.069 INFO 10924 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1753 ms
2022-08-11 16:20:01.253 INFO 10924 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 16:20:01.312 INFO 10924 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 16:20:01.466 INFO 10924 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 16:20:01.576 INFO 10924 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 16:20:01.719 INFO 10924 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 16:20:01.746 INFO 10924 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 16:20:02.029 WARN 10924 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 16:20:02.030 WARN 10924 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 16:20:02.507 INFO 10924 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 16:20:02.519 INFO 10924 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 16:20:02.557 WARN 10924 --- [JavaFX-Launcher] 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
2022-08-11 16:20:03.601 INFO 10924 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@228b4ed5, org.springframework.security.web.context.SecurityContextPersistenceFilter@1861b43d, org.springframework.security.web.header.HeaderWriterFilter@7a3da7e3, org.springframework.security.web.csrf.CsrfFilter@13971e88, org.springframework.security.web.authentication.logout.LogoutFilter@44884493, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@222f1873, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@56f11b8f, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@3bcc5482, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@60158c57, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@482c4775, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7d9c1367, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@35b265ce, org.springframework.security.web.session.SessionManagementFilter@6ab9102e, org.springframework.security.web.access.ExceptionTranslationFilter@68b9f006, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@291c25c2]
2022-08-11 16:20:03.704 INFO 10924 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 16:20:03.714 INFO 10924 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 5.076 seconds (JVM running for 7.192)
2022-08-11 16:21:34.599 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 16:21:34.611 WARN 10924 --- [JavaFX Application Thread] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 1062, SQLState: 23000
2022-08-11 16:21:34.612 ERROR 10924 --- [JavaFX Application Thread] o.h.engine.jdbc.spi.SqlExceptionHelper : Duplicate entry '[email protected]' for key 'email'
2022-08-11 16:21:41.908 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 16:21:41.918 WARN 10924 --- [JavaFX Application Thread] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 1062, SQLState: 23000
2022-08-11 16:21:41.918 ERROR 10924 --- [JavaFX Application Thread] o.h.engine.jdbc.spi.SqlExceptionHelper : Duplicate entry '[email protected]' for key 'email'
2022-08-11 16:21:50.034 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into user_profile (email, name, profile_image, registration, theme) values (?, ?, ?, ?, ?)
2022-08-11 16:21:50.152 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 16:21:50.160 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into login_info (password, user_id) values (?, ?)
2022-08-11 16:21:50.165 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 16:21:50.382 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:04.037 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:22:04.468 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:04.473 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:22:07.906 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:07.909 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:22:10.147 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:10.149 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:22:23.679 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:22:24.099 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:24.100 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:22:36.718 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:22:37.156 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:37.158 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:22:53.227 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:22:53.653 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:22:53.655 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:23:11.035 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:23:11.459 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:23:11.461 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:23:25.733 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:23:26.148 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:23:26.149 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:23:40.462 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:23:40.883 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:23:40.885 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:23:57.916 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:23:58.323 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:23:58.324 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:24:07.313 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : insert into book (authors, cover_id, current_page, end_date, length, name, rating, start_date, status, user_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2022-08-11 16:24:07.732 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:24:07.734 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:24:12.087 WARN 10924 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 16:24:12.088 WARN 10924 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 16:24:13.822 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:24:13.824 DEBUG 10924 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:24:16.412 WARN 10924 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 16:24:16.413 WARN 10924 --- [JavaFX Application Thread] javafx.css : Caught 'java.lang.ClassCastException: class java.lang.String cannot be cast to class javafx.scene.paint.Paint (java.lang.String is in module java.base of loader 'bootstrap'; javafx.scene.paint.Paint is in unnamed module of loader 'app')' while converting value for '-fx-background-color' from rule '*.separator *.line' in stylesheet file:/C:/Users/zkord/IdeaProjects/Readile/target/classes/styles/popup-menu.css
2022-08-11 16:24:21.718 INFO 10924 --- [JavaFX Application Thread] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 16:24:21.721 INFO 10924 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2022-08-11 16:24:21.725 INFO 10924 --- [JavaFX Application Thread] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
2022-08-11 16:24:29.166 INFO 20408 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Starting application using Java 17.0.2 on Zaki-Kurdya with PID 20408 (started by zkord in C:\Users\zkord\IdeaProjects\Readile)
2022-08-11 16:24:29.169 INFO 20408 --- [JavaFX-Launcher] o.s.boot.SpringApplication : No active profile set, falling back to 1 default profile: "default"
2022-08-11 16:24:29.210 INFO 20408 --- [JavaFX-Launcher] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2022-08-11 16:24:29.806 INFO 20408 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2022-08-11 16:24:29.945 INFO 20408 --- [JavaFX-Launcher] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 133 ms. Found 6 JPA repository interfaces.
2022-08-11 16:24:30.386 INFO 20408 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2022-08-11 16:24:30.392 INFO 20408 --- [JavaFX-Launcher] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2022-08-11 16:24:30.395 INFO 20408 --- [JavaFX-Launcher] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.62]
2022-08-11 16:24:30.513 INFO 20408 --- [JavaFX-Launcher] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2022-08-11 16:24:30.514 INFO 20408 --- [JavaFX-Launcher] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1304 ms
2022-08-11 16:24:30.651 INFO 20408 --- [JavaFX-Launcher] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2022-08-11 16:24:30.690 INFO 20408 --- [JavaFX-Launcher] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.6.8.Final
2022-08-11 16:24:30.800 INFO 20408 --- [JavaFX-Launcher] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final}
2022-08-11 16:24:30.889 INFO 20408 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2022-08-11 16:24:31.001 INFO 20408 --- [JavaFX-Launcher] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2022-08-11 16:24:31.020 INFO 20408 --- [JavaFX-Launcher] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL55Dialect
2022-08-11 16:24:31.227 WARN 20408 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000038: Composite-id class does not override equals(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 16:24:31.227 WARN 20408 --- [JavaFX-Launcher] org.hibernate.mapping.RootClass : HHH000039: Composite-id class does not override hashCode(): com.readile.readile.models.book.category.BookCategoryId
2022-08-11 16:24:31.592 INFO 20408 --- [JavaFX-Launcher] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2022-08-11 16:24:31.599 INFO 20408 --- [JavaFX-Launcher] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2022-08-11 16:24:31.629 WARN 20408 --- [JavaFX-Launcher] 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
2022-08-11 16:24:32.389 INFO 20408 --- [JavaFX-Launcher] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@73ad65a0, org.springframework.security.web.context.SecurityContextPersistenceFilter@32510741, org.springframework.security.web.header.HeaderWriterFilter@2958aa3b, org.springframework.security.web.csrf.CsrfFilter@312392d, org.springframework.security.web.authentication.logout.LogoutFilter@3205d371, org.springframework.security.oauth2.client.web.OAuth2AuthorizationRequestRedirectFilter@7d5598f0, org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter@14e89eb, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@5e916dbb, org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter@7986d049, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@5c8bcd09, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2c13a3a2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7fb01ad6, org.springframework.security.web.session.SessionManagementFilter@5cb58cb9, org.springframework.security.web.access.ExceptionTranslationFilter@626a304f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@393b9125]
2022-08-11 16:24:32.473 INFO 20408 --- [JavaFX-Launcher] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2022-08-11 16:24:32.480 INFO 20408 --- [JavaFX-Launcher] o.s.boot.SpringApplication : Started application in 3.689 seconds (JVM running for 4.684)
2022-08-11 16:24:55.188 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 16:24:55.207 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select logininfo0_.id as id1_4_, logininfo0_.password as password2_4_, logininfo0_.user_id as user_id3_4_ from login_info logininfo0_ where logininfo0_.user_id=?
2022-08-11 16:24:55.211 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:24:55.215 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_, user0_.email as email2_5_, user0_.name as name3_5_, user0_.profile_image as profile_4_5_, user0_.registration as registra5_5_, user0_.theme as theme6_5_ from user_profile user0_ where user0_.email=?
2022-08-11 16:24:55.396 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:24:55.401 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:03.204 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 16:25:10.804 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : insert into category (category_image, name, user_id) values (?, ?, ?)
2022-08-11 16:25:10.821 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_
2022-08-11 16:25:10.822 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:10.824 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_
2022-08-11 16:25:10.825 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:18.308 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : insert into category (category_image, name, user_id) values (?, ?, ?)
2022-08-11 16:25:18.321 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_
2022-08-11 16:25:18.323 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:18.324 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_
2022-08-11 16:25:18.325 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:20.603 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:25:20.607 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:21.298 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 16:25:22.570 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 16:25:22.579 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_1_, book0_.authors as authors2_0_1_, book0_.cover_id as cover_id3_0_1_, book0_.current_page as current_4_0_1_, book0_.end_date as end_date5_0_1_, book0_.length as length6_0_1_, book0_.name as name7_0_1_, book0_.rating as rating8_0_1_, book0_.start_date as start_da9_0_1_, book0_.status as status10_0_1_, book0_.user_id as user_id11_0_1_, highlights1_.book_id as book_id3_3_3_, highlights1_.id as id1_3_3_, highlights1_.id as id1_3_0_, highlights1_.book_id as book_id3_3_0_, highlights1_.highlight as highligh2_3_0_ from book book0_ left outer join highlight highlights1_ on book0_.id=highlights1_.book_id where book0_.id=?
2022-08-11 16:25:22.582 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:22.587 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : update book set authors=?, cover_id=?, current_page=?, end_date=?, length=?, name=?, rating=?, start_date=?, status=?, user_id=? where id=?
2022-08-11 16:25:22.613 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_0_, book0_.authors as authors2_0_0_, book0_.cover_id as cover_id3_0_0_, book0_.current_page as current_4_0_0_, book0_.end_date as end_date5_0_0_, book0_.length as length6_0_0_, book0_.name as name7_0_0_, book0_.rating as rating8_0_0_, book0_.start_date as start_da9_0_0_, book0_.status as status10_0_0_, book0_.user_id as user_id11_0_0_, user1_.id as id1_5_1_, user1_.email as email2_5_1_, user1_.name as name3_5_1_, user1_.profile_image as profile_4_5_1_, user1_.registration as registra5_5_1_, user1_.theme as theme6_5_1_ from book book0_ left outer join user_profile user1_ on book0_.user_id=user1_.id where book0_.id=?
2022-08-11 16:25:22.615 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select category0_.id as id1_2_, category0_.category_image as category2_2_, category0_.name as name3_2_, category0_.user_id as user_id4_2_ from category category0_ where category0_.user_id=?
2022-08-11 16:25:22.615 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?
2022-08-11 16:25:22.618 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select bookcatego0_.book_id as book_id1_1_, bookcatego0_.category_id as category2_1_ from book_category bookcatego0_ where bookcatego0_.book_id=?
2022-08-11 16:25:22.624 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select highlight0_.id as id1_3_, highlight0_.book_id as book_id3_3_, highlight0_.highlight as highligh2_3_ from highlight highlight0_ where highlight0_.book_id=?
2022-08-11 16:25:23.641 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select book0_.id as id1_0_, book0_.authors as authors2_0_, book0_.cover_id as cover_id3_0_, book0_.current_page as current_4_0_, book0_.end_date as end_date5_0_, book0_.length as length6_0_, book0_.name as name7_0_, book0_.rating as rating8_0_, book0_.start_date as start_da9_0_, book0_.status as status10_0_, book0_.user_id as user_id11_0_ from book book0_ where book0_.user_id=?
2022-08-11 16:25:23.644 DEBUG 20408 --- [JavaFX Application Thread] org.hibernate.SQL : select user0_.id as id1_5_0_, user0_.email as email2_5_0_, user0_.name as name3_5_0_, user0_.profile_image as profile_4_5_0_, user0_.registration as registra5_5_0_, user0_.theme as theme6_5_0_ from user_profile user0_ where user0_.id=?