-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.log
More file actions
2769 lines (2450 loc) · 370 KB
/
Copy pathserver.log
File metadata and controls
2769 lines (2450 loc) · 370 KB
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
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------< com.offline:payment >-------------------------
[INFO] Building payment 0.0.1-SNAPSHOT
[INFO] from pom.xml
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] --- clean:3.3.2:clean (default-clean) @ payment ---
[INFO] Deleting /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target
[INFO]
[INFO] >>> spring-boot:3.2.5:run (default-cli) > test-compile @ payment >>>
[INFO]
[INFO] --- resources:3.3.1:resources (default-resources) @ payment ---
[INFO] Copying 1 resource from src/main/resources to target/classes
[INFO] Copying 0 resource from src/main/resources to target/classes
[INFO]
[INFO] --- compiler:3.11.0:compile (default-compile) @ payment ---
[INFO] Changes detected - recompiling the module! :source
[INFO] Compiling 19 source files with javac [debug release 21] to target/classes
[INFO]
[INFO] --- resources:3.3.1:testResources (default-testResources) @ payment ---
[INFO] skip non existing resourceDirectory /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/src/test/resources
[INFO]
[INFO] --- compiler:3.11.0:testCompile (default-testCompile) @ payment ---
[INFO] Changes detected - recompiling the module! :dependency
[INFO] Compiling 3 source files with javac [debug release 21] to target/test-classes
[INFO]
[INFO] <<< spring-boot:3.2.5:run (default-cli) < test-compile @ payment <<<
[INFO]
[INFO]
[INFO] --- spring-boot:3.2.5:run (default-cli) @ payment ---
[INFO] Attaching agents: []
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v3.2.5)
2026-05-23T12:38:09.456+05:30 DEBUG 19849 --- [payment] [kground-preinit] org.jboss.logging : Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
2026-05-23T12:38:09.459+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.xml.config.ValidationXmlParser : Trying to load META-INF/validation.xml for XML based Validator configuration.
2026-05-23T12:38:09.460+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via TCCL
2026-05-23T12:38:09.460+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via Hibernate Validator's class loader
2026-05-23T12:38:09.460+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.xml.config.ValidationXmlParser : No META-INF/validation.xml found. Using annotation based configuration only.
2026-05-23T12:38:09.462+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.e.resolver.TraversableResolvers : Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
2026-05-23T12:38:09.462+05:30 DEBUG 19849 --- [payment] [kground-preinit] o.h.v.i.e.resolver.TraversableResolvers : Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
2026-05-23T12:38:09.471+05:30 INFO 19849 --- [payment] [ main] com.offline.payment.PaymentApplication : Starting PaymentApplication using Java 21.0.10 with PID 19849 (/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes started by root1 in /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment)
2026-05-23T12:38:09.471+05:30 DEBUG 19849 --- [payment] [ main] com.offline.payment.PaymentApplication : Running with Spring Boot v3.2.5, Spring v6.1.6
2026-05-23T12:38:09.471+05:30 INFO 19849 --- [payment] [ main] com.offline.payment.PaymentApplication : No active profile set, falling back to 1 default profile: "default"
2026-05-23T12:38:09.471+05:30 DEBUG 19849 --- [payment] [ main] o.s.boot.SpringApplication : Loading source class com.offline.payment.PaymentApplication
2026-05-23T12:38:09.473+05:30 DEBUG 19849 --- [payment] [kground-preinit] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL
2026-05-23T12:38:09.488+05:30 DEBUG 19849 --- [payment] [ main] ConfigServletWebServerApplicationContext : Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@49b2a47d
2026-05-23T12:38:09.495+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
2026-05-23T12:38:09.501+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
2026-05-23T12:38:09.510+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
2026-05-23T12:38:09.512+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
2026-05-23T12:38:09.512+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
2026-05-23T12:38:09.512+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
2026-05-23T12:38:09.512+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
2026-05-23T12:38:09.512+05:30 DEBUG 19849 --- [payment] [kground-preinit] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
2026-05-23T12:38:09.526+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/config/DataInitializer.class]
2026-05-23T12:38:09.531+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/controller/PaymentController.class]
2026-05-23T12:38:09.531+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/controller/TestProvisionController.class]
2026-05-23T12:38:09.533+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Ignored because not a concrete top-level class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/AccountRepository.class]
2026-05-23T12:38:09.533+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Ignored because not a concrete top-level class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/TransactionRepository.class]
2026-05-23T12:38:09.533+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Ignored because not a concrete top-level class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/UserRepository.class]
2026-05-23T12:38:09.533+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/security/HybridCryptoService.class]
2026-05-23T12:38:09.533+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/security/PinVerificationService.class]
2026-05-23T12:38:09.534+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/security/ServerKeyHolder.class]
2026-05-23T12:38:09.534+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/security/SignatureService.class]
2026-05-23T12:38:09.534+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/service/LedgerService.class]
2026-05-23T12:38:09.535+05:30 DEBUG 19849 --- [payment] [ main] o.s.c.a.ClassPathBeanDefinitionScanner : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/service/PaymentProcessorService.class]
2026-05-23T12:38:09.727+05:30 INFO 19849 --- [payment] [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2026-05-23T12:38:09.729+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
2026-05-23T12:38:09.736+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.a.AutoConfigurationPackages : @EnableAutoConfiguration was declared on a class in the package 'com.offline.payment'. Automatic @Repository and @Entity scanning is enabled.
2026-05-23T12:38:09.737+05:30 DEBUG 19849 --- [payment] [ main] .s.d.r.c.RepositoryConfigurationDelegate : Scanning for JPA repositories in packages com.offline.payment.
2026-05-23T12:38:09.741+05:30 DEBUG 19849 --- [payment] [ main] o.s.d.r.c.RepositoryComponentProvider : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/AccountRepository.class]
2026-05-23T12:38:09.741+05:30 DEBUG 19849 --- [payment] [ main] o.s.d.r.c.RepositoryComponentProvider : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/TransactionRepository.class]
2026-05-23T12:38:09.741+05:30 DEBUG 19849 --- [payment] [ main] o.s.d.r.c.RepositoryComponentProvider : Identified candidate component class: file [/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/com/offline/payment/repository/UserRepository.class]
2026-05-23T12:38:09.755+05:30 INFO 19849 --- [payment] [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 17 ms. Found 3 JPA repository interfaces.
2026-05-23T12:38:09.812+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
2026-05-23T12:38:09.814+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
2026-05-23T12:38:09.814+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
2026-05-23T12:38:09.826+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
2026-05-23T12:38:09.827+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
2026-05-23T12:38:09.827+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
2026-05-23T12:38:09.827+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
2026-05-23T12:38:09.828+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
2026-05-23T12:38:09.829+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
2026-05-23T12:38:09.830+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
2026-05-23T12:38:09.831+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
2026-05-23T12:38:09.831+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
2026-05-23T12:38:09.831+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
2026-05-23T12:38:09.833+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'methodValidationPostProcessor'
2026-05-23T12:38:09.839+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
2026-05-23T12:38:09.840+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
2026-05-23T12:38:09.846+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
2026-05-23T12:38:09.853+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
2026-05-23T12:38:09.854+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
2026-05-23T12:38:09.854+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
2026-05-23T12:38:09.855+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
2026-05-23T12:38:09.855+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
2026-05-23T12:38:09.855+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
2026-05-23T12:38:09.855+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
2026-05-23T12:38:09.859+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionAttributeSource'
2026-05-23T12:38:09.860+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'transactionInterceptor'
2026-05-23T12:38:09.860+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
2026-05-23T12:38:09.863+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
2026-05-23T12:38:09.863+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
2026-05-23T12:38:09.872+05:30 DEBUG 19849 --- [payment] [ main] o.s.u.c.s.UiApplicationContextUtils : Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@65f2f9b0]
2026-05-23T12:38:09.872+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactory'
2026-05-23T12:38:09.872+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat'
2026-05-23T12:38:09.885+05:30 DEBUG 19849 --- [payment] [ main] o.a.catalina.core.AprLifecycleListener : The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]. The errors reported were [Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/libtcnative-2.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/liblibtcnative-2.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/libtcnative-1.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.]
org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/libtcnative-2.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/liblibtcnative-2.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/libtcnative-1.dylib, Can't load library: /Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/bin/liblibtcnative-1.dylib, no tcnative-2 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-2 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no tcnative-1 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., no libtcnative-1 in java.library.path: /Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
at org.apache.tomcat.jni.Library.<init>(Library.java:91) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.apache.tomcat.jni.Library.initialize(Library.java:147) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:189) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:106) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:189) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.<init>(TomcatServletWebServerFactory.java:136) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) ~[spring-boot-autoconfigure-3.2.5.jar:3.2.5]
at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na]
at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na]
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1335) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1165) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:326) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) ~[spring-beans-6.1.6.jar:6.1.6]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) ~[spring-context-6.1.6.jar:6.1.6]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:334) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) ~[spring-boot-3.2.5.jar:3.2.5]
at com.offline.payment.PaymentApplication.main(PaymentApplication.java:10) ~[classes/:na]
2026-05-23T12:38:09.892+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
2026-05-23T12:38:09.892+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
2026-05-23T12:38:09.893+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
2026-05-23T12:38:09.893+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
2026-05-23T12:38:09.893+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.896+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
2026-05-23T12:38:09.904+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.905+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sslBundleRegistry'
2026-05-23T12:38:09.905+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
2026-05-23T12:38:09.905+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
2026-05-23T12:38:09.906+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
2026-05-23T12:38:09.907+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
2026-05-23T12:38:09.907+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'fileWatcher'
2026-05-23T12:38:09.908+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
2026-05-23T12:38:09.910+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
2026-05-23T12:38:09.910+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.910+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
2026-05-23T12:38:09.910+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
2026-05-23T12:38:09.911+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
2026-05-23T12:38:09.911+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.912+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
2026-05-23T12:38:09.912+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
2026-05-23T12:38:09.912+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.921+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'errorPageCustomizer'
2026-05-23T12:38:09.921+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
2026-05-23T12:38:09.921+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
2026-05-23T12:38:09.921+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServletRegistration'
2026-05-23T12:38:09.921+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
2026-05-23T12:38:09.927+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dispatcherServlet'
2026-05-23T12:38:09.928+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
2026-05-23T12:38:09.928+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2026-05-23T12:38:09.930+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2026-05-23T12:38:09.937+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
2026-05-23T12:38:09.937+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
2026-05-23T12:38:09.938+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'multipartConfigElement'
2026-05-23T12:38:09.938+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
2026-05-23T12:38:09.938+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
2026-05-23T12:38:09.939+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
2026-05-23T12:38:09.941+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
2026-05-23T12:38:09.949+05:30 DEBUG 19849 --- [payment] [ main] o.apache.tomcat.util.compat.Jre22Compat : Class not found so assuming code is running on a pre-Java 22 JVM
java.lang.ClassNotFoundException: java.text.ListFormat
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[na:na]
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) ~[na:na]
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[na:na]
at java.base/java.lang.Class.forName0(Native Method) ~[na:na]
at java.base/java.lang.Class.forName(Class.java:423) ~[na:na]
at java.base/java.lang.Class.forName(Class.java:414) ~[na:na]
at org.apache.tomcat.util.compat.Jre22Compat.<clinit>(Jre22Compat.java:37) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.apache.tomcat.util.compat.JreCompat.<clinit>(JreCompat.java:55) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.apache.catalina.startup.Tomcat.<clinit>(Tomcat.java:1193) ~[tomcat-embed-core-10.1.20.jar:10.1.20]
at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:201) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:618) ~[spring-context-6.1.6.jar:6.1.6]
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:334) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354) ~[spring-boot-3.2.5.jar:3.2.5]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343) ~[spring-boot-3.2.5.jar:3.2.5]
at com.offline.payment.PaymentApplication.main(PaymentApplication.java:10) ~[classes/:na]
2026-05-23T12:38:09.975+05:30 DEBUG 19849 --- [payment] [ main] org.apache.catalina.core.ContainerBase : Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]]
2026-05-23T12:38:09.975+05:30 DEBUG 19849 --- [payment] [ main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: /Users/root1/.m2/repository/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.jar
2026-05-23T12:38:09.975+05:30 DEBUG 19849 --- [payment] [ main] .s.b.w.e.t.TomcatServletWebServerFactory : Code archive: /Users/root1/.m2/repository/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.jar
2026-05-23T12:38:09.975+05:30 DEBUG 19849 --- [payment] [ main] .s.b.w.e.t.TomcatServletWebServerFactory : None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
2026-05-23T12:38:09.985+05:30 DEBUG 19849 --- [payment] [ main] org.apache.catalina.core.ContainerBase : Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]]
2026-05-23T12:38:09.986+05:30 INFO 19849 --- [payment] [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port 8080 (http)
2026-05-23T12:38:09.992+05:30 INFO 19849 --- [payment] [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2026-05-23T12:38:09.992+05:30 INFO 19849 --- [payment] [ main] o.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/10.1.20]
2026-05-23T12:38:10.001+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.loader.WebappLoader : Starting this Loader
2026-05-23T12:38:10.018+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.core.StandardContext : No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
2026-05-23T12:38:10.021+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.core.StandardContext : Configured a manager of class [org.apache.catalina.session.StandardManager]
2026-05-23T12:38:10.024+05:30 INFO 19849 --- [payment] [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2026-05-23T12:38:10.024+05:30 DEBUG 19849 --- [payment] [ main] w.s.c.ServletWebServerApplicationContext : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2026-05-23T12:38:10.024+05:30 INFO 19849 --- [payment] [ main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 536 ms
2026-05-23T12:38:10.025+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'h2Console'
2026-05-23T12:38:10.025+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration'
2026-05-23T12:38:10.025+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
2026-05-23T12:38:10.027+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'h2Console' via factory method to bean named 'spring.h2.console-org.springframework.boot.autoconfigure.h2.H2ConsoleProperties'
2026-05-23T12:38:10.027+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'dataSource'
2026-05-23T12:38:10.027+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
2026-05-23T12:38:10.027+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
2026-05-23T12:38:10.031+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jdbcConnectionDetails'
2026-05-23T12:38:10.031+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
2026-05-23T12:38:10.031+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
2026-05-23T12:38:10.031+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
2026-05-23T12:38:10.031+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
2026-05-23T12:38:10.032+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : Driver class org.h2.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@2c854dc5
2026-05-23T12:38:10.039+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : HikariPool-1 - configuration:
2026-05-23T12:38:10.040+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : allowPoolSuspension.............false
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : autoCommit......................true
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : catalog.........................none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : connectionInitSql...............none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : connectionTestQuery.............none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : connectionTimeout...............30000
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : dataSource......................none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : dataSourceClassName.............none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : dataSourceJNDI..................none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : dataSourceProperties............{password=<masked>}
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : driverClassName................."org.h2.Driver"
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : exceptionOverrideClassName......none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : healthCheckProperties...........{}
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : healthCheckRegistry.............none
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : idleTimeout.....................600000
2026-05-23T12:38:10.041+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : initializationFailTimeout.......1
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : isolateInternalQueries..........false
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : jdbcUrl.........................jdbc:h2:file:./data/paymentdb
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : keepaliveTime...................0
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : leakDetectionThreshold..........0
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : maxLifetime.....................1800000
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : maximumPoolSize.................10
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : metricRegistry..................none
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : metricsTrackerFactory...........none
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : minimumIdle.....................10
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : password........................<masked>
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : poolName........................"HikariPool-1"
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : readOnly........................false
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : registerMbeans..................false
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : scheduledExecutor...............none
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : schema..........................none
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : threadFactory...................internal
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : transactionIsolation............default
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : username........................"sa"
2026-05-23T12:38:10.042+05:30 DEBUG 19849 --- [payment] [ main] com.zaxxer.hikari.HikariConfig : validationTimeout...............5000
2026-05-23T12:38:10.042+05:30 INFO 19849 --- [payment] [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2026-05-23T12:38:10.147+05:30 INFO 19849 --- [payment] [ main] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn0: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.148+05:30 INFO 19849 --- [payment] [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2026-05-23T12:38:10.152+05:30 INFO 19849 --- [payment] [ main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:file:./data/paymentdb'
2026-05-23T12:38:10.154+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'requestContextFilter'
2026-05-23T12:38:10.155+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'formContentFilter'
2026-05-23T12:38:10.155+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
2026-05-23T12:38:10.157+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'characterEncodingFilter'
2026-05-23T12:38:10.160+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.w.s.ServletContextInitializerBeans : Mapping filters: characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
2026-05-23T12:38:10.160+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.w.s.ServletContextInitializerBeans : Mapping servlets: dispatcherServlet urls=[/], h2Console urls=[/h2-console/*]
2026-05-23T12:38:10.161+05:30 DEBUG 19849 --- [payment] [ main] org.apache.catalina.core.ContainerBase : Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
2026-05-23T12:38:10.162+05:30 DEBUG 19849 --- [payment] [ main] org.apache.catalina.core.ContainerBase : Add container child [StandardWrapper[h2Console]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]
2026-05-23T12:38:10.170+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.w.s.f.OrderedRequestContextFilter : Filter 'requestContextFilter' configured for use
2026-05-23T12:38:10.171+05:30 DEBUG 19849 --- [payment] [ main] s.b.w.s.f.OrderedCharacterEncodingFilter : Filter 'characterEncodingFilter' configured for use
2026-05-23T12:38:10.171+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.w.s.f.OrderedFormContentFilter : Filter 'formContentFilter' configured for use
2026-05-23T12:38:10.172+05:30 DEBUG 19849 --- [payment] [ main] org.apache.catalina.mapper.Mapper : Registered host [localhost]
2026-05-23T12:38:10.172+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.mapper.MapperListener : Register Wrapper [h2Console] in Context [] for service [StandardService[Tomcat]]
2026-05-23T12:38:10.172+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.mapper.MapperListener : Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
2026-05-23T12:38:10.172+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.mapper.MapperListener : Register Context [] for service [StandardService[Tomcat]]
2026-05-23T12:38:10.172+05:30 DEBUG 19849 --- [payment] [ main] o.apache.catalina.mapper.MapperListener : Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
2026-05-23T12:38:10.174+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'entityManagerFactory'
2026-05-23T12:38:10.174+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
2026-05-23T12:38:10.175+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
2026-05-23T12:38:10.176+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
2026-05-23T12:38:10.177+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
2026-05-23T12:38:10.177+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
2026-05-23T12:38:10.177+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@336f1079'
2026-05-23T12:38:10.177+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
2026-05-23T12:38:10.178+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
2026-05-23T12:38:10.178+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
2026-05-23T12:38:10.180+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
2026-05-23T12:38:10.180+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'jpaVendorAdapter'
2026-05-23T12:38:10.186+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
2026-05-23T12:38:10.187+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Creating shared instance of singleton bean 'persistenceManagedTypes'
2026-05-23T12:38:10.188+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@336f1079'
2026-05-23T12:38:10.188+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@49b2a47d'
2026-05-23T12:38:10.190+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
2026-05-23T12:38:10.190+05:30 DEBUG 19849 --- [payment] [ main] o.s.b.f.s.DefaultListableBeanFactory : Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
2026-05-23T12:38:10.196+05:30 DEBUG 19849 --- [payment] [ main] j.LocalContainerEntityManagerFactoryBean : Building JPA container EntityManagerFactory for persistence unit 'default'
2026-05-23T12:38:10.204+05:30 DEBUG 19849 --- [payment] [ main] o.hibernate.jpa.internal.util.LogHelper : PersistenceUnitInfo [
name: default
persistence provider classname: null
classloader: jdk.internal.loader.ClassLoaders$AppClassLoader@2c854dc5
excludeUnlistedClasses: true
JTA datasource: null
Non JTA datasource: HikariDataSource (HikariPool-1)
Transaction type: RESOURCE_LOCAL
PU root URL: file:/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes/
Shared Cache Mode: UNSPECIFIED
Validation Mode: AUTO
Jar files URLs []
Managed classes names [
com.offline.payment.model.Account
com.offline.payment.model.Transaction
com.offline.payment.model.User]
Mapping files names []
Properties []
2026-05-23T12:38:10.208+05:30 DEBUG 19849 --- [payment] [ main] o.h.i.internal.IntegratorServiceImpl : Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
2026-05-23T12:38:10.209+05:30 DEBUG 19849 --- [payment] [ main] o.h.i.internal.IntegratorServiceImpl : Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
2026-05-23T12:38:10.234+05:30 INFO 19849 --- [payment] [ main] org.hibernate.Version : HHH000412: Hibernate ORM core version 6.4.4.Final
2026-05-23T12:38:10.235+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.cfg.Environment : HHH000206: 'hibernate.properties' not found
2026-05-23T12:38:10.244+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
2026-05-23T12:38:10.244+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
2026-05-23T12:38:10.245+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
2026-05-23T12:38:10.246+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
2026-05-23T12:38:10.246+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
2026-05-23T12:38:10.246+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
2026-05-23T12:38:10.246+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.idgen.factory : Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
2026-05-23T12:38:10.249+05:30 DEBUG 19849 --- [payment] [l-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0)
2026-05-23T12:38:10.250+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn1: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.253+05:30 DEBUG 19849 --- [payment] [ main] o.h.c.internal.RegionFactoryInitiator : Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
2026-05-23T12:38:10.253+05:30 INFO 19849 --- [payment] [ main] o.h.c.internal.RegionFactoryInitiator : HHH000026: Second-level cache disabled
2026-05-23T12:38:10.262+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn2: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.274+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn3: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BasicTypeReference@59c43561
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BasicTypeReference@59c43561
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@59c43561
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@634f58d2
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@634f58d2
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.BasicTypeReference@585513a8
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@585513a8
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@7b18658a
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@7b18658a
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.BasicTypeReference@30f28b5
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.BasicTypeReference@30f28b5
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@30f28b5
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BasicTypeReference@1a1f79ce
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@1a1f79ce
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BasicTypeReference@1a1f79ce
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@6aa7e176
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@6aa7e176
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.BasicTypeReference@52abed9d
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BasicTypeReference@281b2dfd
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@281b2dfd
2026-05-23T12:38:10.286+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@492be039
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@1cd2143b
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.BasicTypeReference@1118d539
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.BasicTypeReference@1118d539
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@1118d539
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.BasicTypeReference@601d6622
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.BasicTypeReference@601d6622
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@601d6622
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.BasicTypeReference@76216830
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.BasicTypeReference@76216830
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@76216830
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.BasicTypeReference@7aded903
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.BasicTypeReference@7aded903
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@7aded903
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.BasicTypeReference@2db86a7c
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.BasicTypeReference@2db86a7c
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@2db86a7c
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@261f359f
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@261f359f
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@5b02a984
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@5b02a984
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.BasicTypeReference@57186526
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.BasicTypeReference@57186526
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@57186526
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@391d1e33
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.BasicTypeReference@66f16742
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@66f16742
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.BasicTypeReference@2871ac91
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.BasicTypeReference@3c54ddec
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.BasicTypeReference@3c54ddec
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.BasicTypeReference@3c54ddec
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn4: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@6d69a0d3
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.BasicTypeReference@4f114b
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.BasicTypeReference@257f30f7
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.BasicTypeReference@3fde2209
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@3fde2209
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.BasicTypeReference@1f916219
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@1f916219
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@67acfde9
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@3b088163
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@75882261
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@611d0763
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@615efd1c
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@1e226bcd
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.BasicTypeReference@2a8dd942
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@2a8dd942
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@2322e56f
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@2322e56f
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@35025a0a
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@35025a0a
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@38732364
2026-05-23T12:38:10.287+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@38732364
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c70aae1
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7c70aae1
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@48cd319d
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@6f38f084
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@4ef18604
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@4ef18604
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@372f0a99
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@16cf8438
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@3e5beab5
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@7c588adc
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@7c588adc
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@33ec2c0c
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@5968800d
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.BasicTypeReference@3887c7d7
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@3887c7d7
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.BasicTypeReference@b1b471
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@b1b471
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@526f6427
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@526f6427
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@526f6427
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.BasicTypeReference@4f1afe8f
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@4f1afe8f
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@4f1afe8f
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@443a06ad
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@6ddd1c51
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration instant -> org.hibernate.type.BasicTypeReference@752b69e3
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@752b69e3
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid -> org.hibernate.type.BasicTypeReference@15605d83
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@15605d83
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@15605d83
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@1fb2eec
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@4c18516
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.BasicTypeReference@2a0b901c
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2a0b901c
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.BasicTypeReference@3d104c9b
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration Currency -> org.hibernate.type.BasicTypeReference@3d104c9b
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@3d104c9b
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.BasicTypeReference@6544899b
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@6544899b
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.BasicTypeReference@6da54910
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@6da54910
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.BasicTypeReference@1bd8afc8
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@1bd8afc8
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@24134cbc
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@24134cbc
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.BasicTypeReference@65da01f4
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@65da01f4
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration vector -> org.hibernate.type.BasicTypeReference@22f02996
2026-05-23T12:38:10.288+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.BasicTypeReference@7c8874ef
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.JavaObjectType@285a4fe3
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@285a4fe3
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration null -> org.hibernate.type.NullType@3dfd6220
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@3815146b
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@6de43bc1
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@27a9f025
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@71936a92
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@61359e87
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@2dc39b53
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@45037e16
2026-05-23T12:38:10.290+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@2f2e4bde
2026-05-23T12:38:10.292+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.BootstrapContextImpl : Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37c7766e] into BootstrapContext; was [null]
2026-05-23T12:38:10.292+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37c7766e) [was null]
2026-05-23T12:38:10.293+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.BootstrapContextImpl : Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@723e3c17] into BootstrapContext; was [null]
2026-05-23T12:38:10.293+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.BootstrapContextImpl : Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@4ffced4e] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@6094de13]
2026-05-23T12:38:10.300+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn5: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.313+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn6: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.326+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn7: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.339+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn8: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.351+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Added connection conn9: url=jdbc:h2:file:./data/paymentdb user=SA
2026-05-23T12:38:10.363+05:30 INFO 19849 --- [payment] [ main] o.s.o.j.p.SpringPersistenceUnitInfo : No LoadTimeWeaver setup: ignoring JPA class transformer
2026-05-23T12:38:10.363+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.BootstrapContextImpl : Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37c7766e]
2026-05-23T12:38:10.363+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@37c7766e]
2026-05-23T12:38:10.364+05:30 DEBUG 19849 --- [payment] [onnection adder] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0)
2026-05-23T12:38:10.376+05:30 DEBUG 19849 --- [payment] [ main] o.h.e.j.e.i.JdbcEnvironmentInitiator : Database ->
name : H2
version : 2.2.224 (2023-09-17)
major : 2
minor : 2
2026-05-23T12:38:10.376+05:30 DEBUG 19849 --- [payment] [ main] o.h.e.j.e.i.JdbcEnvironmentInitiator : Driver ->
name : H2 JDBC Driver
version : 2.2.224 (2023-09-17)
major : 2
minor : 2
2026-05-23T12:38:10.376+05:30 DEBUG 19849 --- [payment] [ main] o.h.e.j.e.i.JdbcEnvironmentInitiator : JDBC version : 4.2
2026-05-23T12:38:10.392+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.orm.dialect : HHH035001: Using dialect: org.hibernate.dialect.H2Dialect, version: 2.2.224
2026-05-23T12:38:10.394+05:30 DEBUG 19849 --- [payment] [ main] o.h.e.j.env.spi.IdentifierHelperBuilder : JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
2026-05-23T12:38:10.401+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(NCharTypeDescriptor) replaced previous registration(CharTypeDescriptor)
2026-05-23T12:38:10.401+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(NVarcharTypeDescriptor) replaced previous registration(VarcharTypeDescriptor)
2026-05-23T12:38:10.401+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(LongNVarcharTypeDescriptor) replaced previous registration(LongVarcharTypeDescriptor)
2026-05-23T12:38:10.402+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(NClobTypeDescriptor(DEFAULT)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
2026-05-23T12:38:10.403+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(2005, ClobTypeDescriptor(STREAM_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
2026-05-23T12:38:10.404+05:30 DEBUG 19849 --- [payment] [ main] o.h.t.d.jdbc.spi.JdbcTypeRegistry : addDescriptor(TimestampUtcDescriptor) replaced previous registration(TimestampUtcDescriptor)
2026-05-23T12:38:10.406+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
2026-05-23T12:38:10.406+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> basicType@1(java.time.Duration,3015)
2026-05-23T12:38:10.406+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
2026-05-23T12:38:10.407+05:30 DEBUG 19849 --- [payment] [ main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@21a6a494] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@794c5f5e]
2026-05-23T12:38:10.423+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.relational.Namespace : Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
2026-05-23T12:38:10.432+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Binding entity from annotated class: com.offline.payment.model.Account
2026-05-23T12:38:10.435+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Import with entity name Account
2026-05-23T12:38:10.438+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Bind entity com.offline.payment.model.Account on table accounts
2026-05-23T12:38:10.441+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
2026-05-23T12:38:10.446+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.446+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.Account] is safe
2026-05-23T12:38:10.446+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.Account
2026-05-23T12:38:10.447+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property vpa with lazy=false
2026-05-23T12:38:10.448+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Account:vpa]
2026-05-23T12:38:10.449+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for vpa
2026-05-23T12:38:10.450+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: accounts.vpa
2026-05-23T12:38:10.451+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property vpa
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.BinderHelper : #makeIdGenerator(BasicValue([Column(vpa)]), vpa, assigned, , ...)
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property balance with lazy=false
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Account:balance]
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for balance
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: accounts.balance
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property balance
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property holderName with lazy=false
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Account:holderName]
2026-05-23T12:38:10.452+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for holderName
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: accounts.holder_name
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property holderName
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property version with lazy=false
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Account:version]
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for version
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: accounts.version
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property version
2026-05-23T12:38:10.453+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.r.c.i.ClassLoaderServiceImpl : HHH000194: Package not found or wo package-info.java: com.offline.payment.model
2026-05-23T12:38:10.455+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Binding entity from annotated class: com.offline.payment.model.Transaction
2026-05-23T12:38:10.455+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Import with entity name Transaction
2026-05-23T12:38:10.455+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Bind entity com.offline.payment.model.Transaction on table transactions
2026-05-23T12:38:10.455+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
2026-05-23T12:38:10.457+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.457+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.Transaction] is safe
2026-05-23T12:38:10.457+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.Transaction
2026-05-23T12:38:10.457+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property id with lazy=false
2026-05-23T12:38:10.457+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:id]
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for id
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.id
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property id
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.BinderHelper : #makeIdGenerator(BasicValue([Column(id)]), id, identity, , ...)
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property amount with lazy=false
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:amount]
2026-05-23T12:38:10.458+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for amount
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.amount
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property amount
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property bridgeNodeId with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:bridgeNodeId]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for bridgeNodeId
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.bridge_node_id
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property bridgeNodeId
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property hopCount with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:hopCount]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for hopCount
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.hop_count
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property hopCount
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property packetHash with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:packetHash]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for packetHash
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.packet_hash
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property packetHash
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property receiverVpa with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:receiverVpa]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for receiverVpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.receiver_vpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property receiverVpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property senderVpa with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:senderVpa]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for senderVpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.sender_vpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property senderVpa
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property settleAt with lazy=false
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:settleAt]
2026-05-23T12:38:10.459+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for settleAt
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.settle_at
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property settleAt
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property signedAt with lazy=false
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:signedAt]
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for signedAt
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.signed_at
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property signedAt
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property status with lazy=false
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.Transaction:status]
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for status
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: transactions.status
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property status
2026-05-23T12:38:10.460+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.r.c.i.ClassLoaderServiceImpl : HHH000194: Package not found or wo package-info.java: com.offline.payment.model
2026-05-23T12:38:10.461+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Binding entity from annotated class: com.offline.payment.model.User
2026-05-23T12:38:10.461+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Import with entity name User
2026-05-23T12:38:10.461+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.EntityBinder : Bind entity com.offline.payment.model.User on table users
2026-05-23T12:38:10.461+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.User] is safe
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.User
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property vpa with lazy=false
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.User:vpa]
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for vpa
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: users.vpa
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property vpa
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.BinderHelper : #makeIdGenerator(BasicValue([Column(vpa)]), vpa, assigned, , ...)
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.AnnotatedColumn : Binding column: AnnotatedColumn()
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : MetadataSourceProcessor property publicKeyBase64 with lazy=false
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.m.internal.AbstractPropertyHolder : Attempting to locate auto-apply AttributeConverter for property [com.offline.payment.model.User:publicKeyBase64]
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : building BasicValue for publicKeyBase64
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.BasicValue : Skipping column re-registration: users.public_key_base64
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.model.internal.PropertyBinder : Building property publicKeyBase64
2026-05-23T12:38:10.462+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.r.c.i.ClassLoaderServiceImpl : HHH000194: Package not found or wo package-info.java: com.offline.payment.model
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for vpa
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for balance
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for holderName
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for version
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for id
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for amount
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for bridgeNodeId
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for hopCount
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for packetHash
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for receiverVpa
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for senderVpa
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for settleAt
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for signedAt
2026-05-23T12:38:10.463+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for status
2026-05-23T12:38:10.464+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for vpa
2026-05-23T12:38:10.464+05:30 DEBUG 19849 --- [payment] [ main] o.h.b.model.internal.BasicValueBinder : Starting `BasicValueBinder#fillSimpleValue` for publicKeyBase64
2026-05-23T12:38:10.465+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.PrimaryKey : Forcing column [vpa] to be non-null as it is part of the primary key for table [accounts]
2026-05-23T12:38:10.465+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.PrimaryKey : Forcing column [id] to be non-null as it is part of the primary key for table [transactions]
2026-05-23T12:38:10.465+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.mapping.PrimaryKey : Forcing column [vpa] to be non-null as it is part of the primary key for table [users]
2026-05-23T12:38:10.492+05:30 DEBUG 19849 --- [payment] [ main] o.hibernate.internal.SessionFactoryImpl : Building session factory
2026-05-23T12:38:10.507+05:30 DEBUG 19849 --- [payment] [ main] .h.s.i.SessionFactoryServiceRegistryImpl : EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
2026-05-23T12:38:10.507+05:30 DEBUG 19849 --- [payment] [ main] o.hibernate.internal.SessionFactoryImpl : Instantiating SessionFactory with settings: {hibernate.format_sql=true, java.specification.version=21, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@28bd5015, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=UTF-8, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment/target/classes:/Users/root1/.m2/repository/org/springframework/boot/spring-boot/3.2.5/spring-boot-3.2.5.jar:/Users/root1/.m2/repository/org/springframework/boot/spring-boot-autoconfigure/3.2.5/spring-boot-autoconfigure-3.2.5.jar:/Users/root1/.m2/repository/ch/qos/logback/logback-classic/1.4.14/logback-classic-1.4.14.jar:/Users/root1/.m2/repository/ch/qos/logback/logback-core/1.4.14/logback-core-1.4.14.jar:/Users/root1/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.21.1/log4j-to-slf4j-2.21.1.jar:/Users/root1/.m2/repository/org/apache/logging/log4j/log4j-api/2.21.1/log4j-api-2.21.1.jar:/Users/root1/.m2/repository/org/slf4j/jul-to-slf4j/2.0.13/jul-to-slf4j-2.0.13.jar:/Users/root1/.m2/repository/jakarta/annotation/jakarta.annotation-api/2.1.1/jakarta.annotation-api-2.1.1.jar:/Users/root1/.m2/repository/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/core/jackson-databind/2.15.4/jackson-databind-2.15.4.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.jar:/Users/root1/.m2/repository/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.jar:/Users/root1/.m2/repository/org/apache/tomcat/embed/tomcat-embed-core/10.1.20/tomcat-embed-core-10.1.20.jar:/Users/root1/.m2/repository/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.20/tomcat-embed-websocket-10.1.20.jar:/Users/root1/.m2/repository/org/springframework/spring-web/6.1.6/spring-web-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-beans/6.1.6/spring-beans-6.1.6.jar:/Users/root1/.m2/repository/io/micrometer/micrometer-observation/1.12.5/micrometer-observation-1.12.5.jar:/Users/root1/.m2/repository/io/micrometer/micrometer-commons/1.12.5/micrometer-commons-1.12.5.jar:/Users/root1/.m2/repository/org/springframework/spring-webmvc/6.1.6/spring-webmvc-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-aop/6.1.6/spring-aop-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-context/6.1.6/spring-context-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-expression/6.1.6/spring-expression-6.1.6.jar:/Users/root1/.m2/repository/org/aspectj/aspectjweaver/1.9.22/aspectjweaver-1.9.22.jar:/Users/root1/.m2/repository/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar:/Users/root1/.m2/repository/org/springframework/spring-jdbc/6.1.6/spring-jdbc-6.1.6.jar:/Users/root1/.m2/repository/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.jar:/Users/root1/.m2/repository/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.jar:/Users/root1/.m2/repository/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.jar:/Users/root1/.m2/repository/org/jboss/logging/jboss-logging/3.5.3.Final/jboss-logging-3.5.3.Final.jar:/Users/root1/.m2/repository/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.jar:/Users/root1/.m2/repository/io/smallrye/jandex/3.1.2/jandex-3.1.2.jar:/Users/root1/.m2/repository/com/fasterxml/classmate/1.6.0/classmate-1.6.0.jar:/Users/root1/.m2/repository/net/bytebuddy/byte-buddy/1.14.13/byte-buddy-1.14.13.jar:/Users/root1/.m2/repository/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.jar:/Users/root1/.m2/repository/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.jar:/Users/root1/.m2/repository/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.jar:/Users/root1/.m2/repository/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.jar:/Users/root1/.m2/repository/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.jar:/Users/root1/.m2/repository/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.jar:/Users/root1/.m2/repository/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.jar:/Users/root1/.m2/repository/org/springframework/data/spring-data-jpa/3.2.5/spring-data-jpa-3.2.5.jar:/Users/root1/.m2/repository/org/springframework/data/spring-data-commons/3.2.5/spring-data-commons-3.2.5.jar:/Users/root1/.m2/repository/org/springframework/spring-orm/6.1.6/spring-orm-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-tx/6.1.6/spring-tx-6.1.6.jar:/Users/root1/.m2/repository/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar:/Users/root1/.m2/repository/org/springframework/spring-aspects/6.1.6/spring-aspects-6.1.6.jar:/Users/root1/.m2/repository/com/h2database/h2/2.2.224/h2-2.2.224.jar:/Users/root1/.m2/repository/org/apache/tomcat/embed/tomcat-embed-el/10.1.20/tomcat-embed-el-10.1.20.jar:/Users/root1/.m2/repository/org/hibernate/validator/hibernate-validator/8.0.1.Final/hibernate-validator-8.0.1.Final.jar:/Users/root1/.m2/repository/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.jar:/Users/root1/.m2/repository/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.jar:/Users/root1/.m2/repository/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.jar:/Users/root1/.m2/repository/org/springframework/spring-core/6.1.6/spring-core-6.1.6.jar:/Users/root1/.m2/repository/org/springframework/spring-jcl/6.1.6/spring-jcl-6.1.6.jar, java.vm.vendor=Eclipse Adoptium, sun.arch.data.model=64, java.vendor.url=https://adoptium.net/, catalina.useNaming=false, user.timezone=Asia/Kolkata, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=21, os.name=Mac OS X, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), sun.java.launcher=SUN_STANDARD, user.country=IN, sun.boot.library.path=/Users/root1/Library/Java/JavaVirtualMachines/temurin-21.0.10/Contents/Home/lib, sun.java.command=com.offline.payment.PaymentApplication, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@2e159116, http.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, jdk.debug=release, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/Users/root1, user.language=en, java.specification.vendor=Oracle Corporation, java.version.date=2026-01-20, java.home=/Users/root1/Library/Java/JavaVirtualMachines/temurin-21.0.10/Contents/Home, file.separator=/, java.vm.compressedOopsMode=Zero based, line.separator=
, hibernate.persistenceUnitName=default, java.vm.specification.vendor=Oracle Corporation, java.specification.name=Java Platform API Specification, FILE_LOG_CHARSET=UTF-8, hibernate.transaction.coordinator_class=class org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorBuilderImpl, java.awt.headless=true, apple.awt.application.name=PaymentApplication, jakarta.persistence.validation.mode=AUTO, hibernate.hbm2ddl.auto=update, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, ftp.nonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.runtime.version=21.0.10+7-LTS, user.name=root1, stdout.encoding=UTF-8, path.separator=:, os.version=26.5, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=true, java.vendor.version=Temurin-21.0.10+7, java.vendor.url.bug=https://github.com/adoptium/adoptium-support/issues, java.io.tmpdir=/var/folders/6w/xkxpzxkj0xd1bn4yhdmzr7cw0000gn/T/, com.zaxxer.hikari.pool_number=1, catalina.home=/private/var/folders/6w/xkxpzxkj0xd1bn4yhdmzr7cw0000gn/T/tomcat.8080.5890574015004568976, java.version=21.0.10, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/Users/root1/Documents/UPI_WITHOUT_INTERNET/payment, os.arch=aarch64, java.vm.specification.name=Java Virtual Machine Specification, PID=19849, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/private/var/folders/6w/xkxpzxkj0xd1bn4yhdmzr7cw0000gn/T/tomcat.8080.5890574015004568976, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@d1f23a0, native.encoding=UTF-8, java.library.path=/Users/root1/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:., stderr.encoding=UTF-8, java.vendor=Eclipse Adoptium, java.vm.info=mixed mode, emulated-client, sharing, java.vm.version=21.0.10+7-LTS, sun.io.unicode.encoding=UnicodeBig, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), socksNonProxyHosts=local|*.local|169.254/16|*.169.254/16, java.class.version=65.0, LOGGED_APPLICATION_NAME=[payment] }
2026-05-23T12:38:10.508+05:30 DEBUG 19849 --- [payment] [ main] o.hibernate.internal.SessionFactoryImpl : Session factory constructed with filter configurations : {}
2026-05-23T12:38:10.509+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.xml.config.ValidationXmlParser : Trying to load META-INF/validation.xml for XML based Validator configuration.
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via TCCL
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.xml.config.ResourceLoaderHelper : Trying to load META-INF/validation.xml via Hibernate Validator's class loader
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.xml.config.ValidationXmlParser : No META-INF/validation.xml found. Using annotation based configuration only.
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.e.resolver.TraversableResolvers : Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] o.h.v.i.e.resolver.TraversableResolvers : Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] .h.v.m.ResourceBundleMessageInterpolator : Loaded expression factory via original TCCL
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
2026-05-23T12:38:10.510+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] .i.e.ValidatorFactoryConfigurationHelper : HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.Transaction] is safe
2026-05-23T12:38:10.511+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.Transaction
2026-05-23T12:38:10.519+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.User] is safe
2026-05-23T12:38:10.519+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.User
2026-05-23T12:38:10.520+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : Not known whether passed class name [com.offline.payment.model.Account] is safe
2026-05-23T12:38:10.520+05:30 DEBUG 19849 --- [payment] [ main] o.h.boot.internal.ClassLoaderAccessImpl : No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.offline.payment.model.Account
2026-05-23T12:38:10.521+05:30 DEBUG 19849 --- [payment] [ main] .h.s.i.SessionFactoryServiceRegistryImpl : EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
2026-05-23T12:38:10.539+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
2026-05-23T12:38:10.539+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
2026-05-23T12:38:10.540+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
2026-05-23T12:38:10.540+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
2026-05-23T12:38:10.540+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@10d905c1] under count; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@3e4f2300] under every; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@e706aa] under any; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4c41a177] under sinh; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@2faf6e4a] under cosh; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43ab0659] under tanh; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@644947ee] under pi; prior registration was null
2026-05-23T12:38:10.541+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@25421809] under log; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : length -> character_length
2026-05-23T12:38:10.542+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@38e7860c] under position; prior registration was null
2026-05-23T12:38:10.543+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@2965dd88] under overlay; prior registration was null
2026-05-23T12:38:10.543+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@35ceec81] under trim; prior registration was null
2026-05-23T12:38:10.543+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@37c87fcc] under cast; prior registration was null
2026-05-23T12:38:10.543+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@ca2be53] under collate; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@1d622556] under extract; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@22c29aa8] under ifnull; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@389008d1] under pad; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@29519337] under str; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@3a7469ca] under format; prior registration was null
2026-05-23T12:38:10.544+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@681d704e] under timestampadd; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@1f1fbc9f] under timestampdiff; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : dateadd -> timestampadd
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : datediff -> timestampdiff
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1e258d3b] under current_date; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@2b6fcca1] under current_time; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@39f93225] under current_timestamp; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : current date -> current_date
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : current time -> current_time
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : current timestamp -> current_timestamp
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@24b3f778] under local_date; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@164dea80] under local_time; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4392362c] under local_datetime; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@338a4c61] under offset_datetime; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : local date -> local_date
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : local time -> local_time
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : local datetime -> local_datetime
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : offset datetime -> offset_datetime
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@839755f] under instant; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : current_instant -> instant
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@17053b5] under sql; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was NamedSqmFunctionTemplate(max)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was NamedSqmFunctionTemplate(min)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was NamedSqmFunctionTemplate(sum)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was NamedSqmFunctionTemplate(avg)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@3cad24ae] under count; prior registration was org.hibernate.dialect.function.CountFunction@10d905c1
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.AvgFunction@4ef8090b] under avg; prior registration was NamedSqmFunctionTemplate(avg)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@644947ee
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6d31f14] under mod; prior registration was NamedSqmFunctionTemplate(mod)
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rand)] under rand; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitand)] under bitand; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitor)] under bitor; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bitxor)] under bitxor; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day)] under day; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(month)] under month; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(year)] under year; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(hour)] under hour; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(minute)] under minute; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(second)] under second; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(microsecond)] under microsecond; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_week)] under day_of_week; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_month)] under day_of_month; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : day -> day_of_month
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(day_of_year)] under day_of_year; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(week)] under week; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(quarter)] under quarter; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(monthname)] under monthname; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(dayname)] under dayname; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@164dea80
2026-05-23T12:38:10.545+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@4392362c
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.TruncFunction@15d58530] under trunc; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : truncate -> trunc
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@31f5b923] under date_trunc; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_length)] under bit_length; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(octet_length)] under octet_length; prior registration was NamedSqmFunctionTemplate(octet_length)
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(space)] under space; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(char)] under char; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : chr -> char
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(instr)] under instr; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@79e2606f] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@38e7860c
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@734cf881] under concat; prior registration was NamedSqmFunctionTemplate(concat)
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curtime)] under curtime; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(curdate)] under curdate; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(now)] under now; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sysdate)] under sysdate; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(insert)] under insert; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : every -> bool_and
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registering alternate key : any -> bool_or
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(median)] under median; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@4a890fdd] under format; prior registration was org.hibernate.dialect.function.FormatFunction@3a7469ca
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rownum)] under rownum; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
2026-05-23T12:38:10.546+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggFunction@30a01dd8] under listagg; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@3f45dfec] under mode; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7c69e1e1] under percentile_cont; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@7b52b18a] under percentile_disc; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@5788722f] under rank; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@7a730479] under dense_rank; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@1e5b33e5] under percent_rank; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@654b899f] under cume_dist; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@7fcc3745] under array; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConstructorFunction@6d35ff7b] under array_list; prior registration was null
2026-05-23T12:38:10.547+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@588d630d] under array_agg; prior registration was null
2026-05-23T12:38:10.548+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionFunction@6bfdaa7a] under array_position; prior registration was null
2026-05-23T12:38:10.549+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@76e00bdb] under array_positions; prior registration was null
2026-05-23T12:38:10.550+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayPositionsFunction@73a49597] under array_positions_list; prior registration was null
2026-05-23T12:38:10.550+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5eb2972f] under array_length; prior registration was null
2026-05-23T12:38:10.550+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatFunction@bb50de6] under array_concat; prior registration was null
2026-05-23T12:38:10.550+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@4db46344] under array_prepend; prior registration was null
2026-05-23T12:38:10.550+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayConcatElementFunction@56c6d515] under array_append; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@39f4a7c4] under array_contains; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayContainsFunction@111fe921] under array_contains_nullable; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@218f2f51] under array_overlaps; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayOverlapsFunction@1d9af731] under array_overlaps_nullable; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@43756cb] under array_get; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArraySetFunction@20f63ddc] under array_set; prior registration was null
2026-05-23T12:38:10.551+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveFunction@1efcba00] under array_remove; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayRemoveIndexFunction@6cde0c69] under array_remove_index; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6f4d2294] under array_slice; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayReplaceFunction@35fb3209] under array_replace; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@5855b0ed] under array_trim; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@340b4f07] under array_fill; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayFillFunction@e994ca] under array_fill_list; prior registration was null
2026-05-23T12:38:10.552+05:30 DEBUG 19849 --- [payment] [ main] o.h.q.sqm.function.SqmFunctionRegistry : Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.H2ArrayToStringFunction@3620eab] under array_to_string; prior registration was null
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : abs(NUMERIC arg)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double acos(NUMERIC arg)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean any(BOOLEAN predicate)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_agg(arg)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_append( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_concat( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_fill(OBJECT element, INTEGER elementCount)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_fill_list(OBJECT element, INTEGER elementCount)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_get(ARRAY array, INTEGER index)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer array_length(ARRAY array)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_list( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean array_overlaps(ARRAY array0, OBJECT array1)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : int[] array_positions(ARRAY array, OBJECT element)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : List array_positions_list(ARRAY array, OBJECT element)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_prepend( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_remove( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_remove_index( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_replace( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_set( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_slice(ARRAY array, INTEGER start, INTEGER end)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String array_to_string( ... )
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : array_trim(ARRAY array, INTEGER elementsToRemove)
2026-05-23T12:38:10.553+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer ascii(STRING arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double asin(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double atan(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double atan2(NUMERIC arg0, NUMERIC arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : avg(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : bit_and(arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer bit_length(STRING_OR_CLOB arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : bit_or(arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : bitand(arg0, arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : bitor(arg0, arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : bitxor(arg0, arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean bool_and(BOOLEAN predicate)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean bool_or(BOOLEAN predicate)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : cast(arg as Type)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : ceiling(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Character char(INTEGER arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer character_length(STRING_OR_CLOB arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Character chr(INTEGER arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : coalesce(arg0[, arg1[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String collate(STRING string as COLLATION collation)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String concat(STRING string0[, STRING string1[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double cos(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double cosh(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double cot(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Long count([distinct ]{arg|*})
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double cume_dist([arg0[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Date curdate()
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Date current date
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Time current time
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Timestamp current timestamp
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Date current_date
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Instant current_instant
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Time current_time
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Timestamp current_timestamp
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Time curtime()
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : date_trunc(STRING field, TEMPORAL datetime)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : basicType@4(java.lang.Long,-5)|basicType@17(java.lang.Double,8) datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer day(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer day_of_month(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer day_of_week(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer day_of_year(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String dayname(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double degrees(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Long dense_rank([arg0[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Boolean every(BOOLEAN predicate)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double exp(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : extract(TEMPORAL_UNIT field from TEMPORAL arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : first_valueANY value
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : floor(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String format(TEMPORAL datetime as STRING pattern)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer hour(TIME arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : ifnull(arg0, arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Instant instant
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer instr(STRING string, STRING pattern[, INTEGER start[, INTEGER occurrence]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : lagANY value[, INTEGER offset[, ANY default]]
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : last_valueANY value
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : leadANY value[, INTEGER offset[, ANY default]]
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String left(STRING string, INTEGER length)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer length(STRING_OR_CLOB arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String listagg(STRING arg0, STRING arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double ln(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalDate local date
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalDateTime local datetime
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalTime local time
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalDate local_date
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalDateTime local_datetime
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : LocalTime local_time
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Time localtime
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Timestamp localtimestamp
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer locate(STRING pattern, STRING string[, INTEGER start])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double log(NUMERIC base, NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double log10(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String lower(STRING string)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String lpad(STRING string, INTEGER length[, STRING padding])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String ltrim(STRING string)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : max(COMPARABLE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double median(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer microsecond(TIME arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : min(COMPARABLE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer minute(TIME arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer mod(INTEGER arg0, INTEGER arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : mode()
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer month(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String monthname(DATE arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Timestamp now()
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : nth_valueANY value, INTEGER nth
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : nullif(arg0, arg1)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Integer octet_length(STRING_OR_CLOB arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : OffsetDateTime offset datetime
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : OffsetDateTime offset_datetime
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String overlay(STRING string placing STRING replacement from INTEGER start[ for INTEGER length])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : Double percent_rank([arg0[, ...]])
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : percentile_cont(NUMERIC arg)
2026-05-23T12:38:10.554+05:30 DEBUG 19849 --- [payment] [ main] org.hibernate.HQL_FUNCTIONS : percentile_disc(NUMERIC arg)