-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp-2024-07-31.log
2450 lines (2408 loc) · 226 KB
/
app-2024-07-31.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-07-31 02:00:57 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:00:57 - Starting MedicApiApplication using Java 17.0.12 with PID 2840 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:00:57 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:00:57 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:00:57 - Finished Spring Data repository scanning in 55 ms. Found 4 JPA repository interfaces.
2024-07-31 02:00:58 - Tomcat initialized with port 8001 (http)
2024-07-31 02:00:58 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:00:58 - Starting service [Tomcat]
2024-07-31 02:00:58 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:00:58 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:00:58 - Root WebApplicationContext: initialization completed in 1585 ms
2024-07-31 02:00:58 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:00:58 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:00:58 - HHH000026: Second-level cache disabled
2024-07-31 02:00:59 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:00:59 - HikariPool-1 - Starting...
2024-07-31 02:00:59 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@48ee3c2d
2024-07-31 02:00:59 - HikariPool-1 - Start completed.
2024-07-31 02:00:59 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:01:00 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:01:00 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:01:00 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:01:00 -
Using generated security password: f775a12a-13f3-419e-a338-4d1a34100f1b
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:01:00 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:01:01 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:01:01 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:01:01 - Started MedicApiApplication in 4.669 seconds (process running for 5.106)
2024-07-31 02:05:11 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:05:11 - Starting MedicApiApplication using Java 17.0.12 with PID 16236 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:05:11 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:05:12 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:05:12 - Finished Spring Data repository scanning in 50 ms. Found 4 JPA repository interfaces.
2024-07-31 02:05:13 - Tomcat initialized with port 8001 (http)
2024-07-31 02:05:13 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:05:13 - Starting service [Tomcat]
2024-07-31 02:05:13 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:05:13 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:05:13 - Root WebApplicationContext: initialization completed in 1535 ms
2024-07-31 02:05:13 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:05:13 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:05:13 - HHH000026: Second-level cache disabled
2024-07-31 02:05:13 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:05:13 - HikariPool-1 - Starting...
2024-07-31 02:05:13 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@16f34376
2024-07-31 02:05:13 - HikariPool-1 - Start completed.
2024-07-31 02:05:13 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:05:14 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:05:14 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:05:15 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:05:15 -
Using generated security password: 947f9f7e-3eb7-48af-bc79-f203e1609966
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:05:15 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:05:15 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:05:15 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:05:15 - Started MedicApiApplication in 4.534 seconds (process running for 4.957)
2024-07-31 02:05:40 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:05:40 - Starting MedicApiApplication using Java 17.0.12 with PID 15684 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:05:40 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:05:41 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:05:41 - Finished Spring Data repository scanning in 53 ms. Found 4 JPA repository interfaces.
2024-07-31 02:05:42 - Tomcat initialized with port 8001 (http)
2024-07-31 02:05:42 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:05:42 - Starting service [Tomcat]
2024-07-31 02:05:42 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:05:42 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:05:42 - Root WebApplicationContext: initialization completed in 1492 ms
2024-07-31 02:05:42 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:05:42 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:05:42 - HHH000026: Second-level cache disabled
2024-07-31 02:05:43 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:05:43 - HikariPool-1 - Starting...
2024-07-31 02:05:43 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@16f34376
2024-07-31 02:05:43 - HikariPool-1 - Start completed.
2024-07-31 02:05:43 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:05:44 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:05:44 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:05:44 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:05:44 -
Using generated security password: 6fe6a4b9-16de-43d4-9808-9839be0fd871
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:05:44 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:05:45 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:05:45 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:05:45 - Started MedicApiApplication in 4.628 seconds (process running for 5.058)
2024-07-31 02:06:38 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:06:38 - Starting MedicApiApplication using Java 17.0.12 with PID 2176 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:06:38 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:06:39 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:06:39 - Finished Spring Data repository scanning in 52 ms. Found 4 JPA repository interfaces.
2024-07-31 02:06:40 - Tomcat initialized with port 8001 (http)
2024-07-31 02:06:40 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:06:40 - Starting service [Tomcat]
2024-07-31 02:06:40 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:06:40 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:06:40 - Root WebApplicationContext: initialization completed in 1502 ms
2024-07-31 02:06:40 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:06:40 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:06:40 - HHH000026: Second-level cache disabled
2024-07-31 02:06:40 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:06:40 - HikariPool-1 - Starting...
2024-07-31 02:06:40 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@24f177f5
2024-07-31 02:06:40 - HikariPool-1 - Start completed.
2024-07-31 02:06:41 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:06:41 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:06:41 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:06:42 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:06:42 -
Using generated security password: f9ea8f29-d5df-4cfc-8a1d-da6dea264cce
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:06:42 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:06:42 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:06:42 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:06:42 - Started MedicApiApplication in 4.585 seconds (process running for 5.016)
2024-07-31 02:06:42 -
2024-07-31 02:06:42 - URL: http://localhost:8001
2024-07-31 02:06:42 -
2024-07-31 02:06:59 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:06:59 - Starting MedicApiApplication using Java 17.0.12 with PID 1416 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:06:59 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:07:00 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:07:00 - Finished Spring Data repository scanning in 50 ms. Found 4 JPA repository interfaces.
2024-07-31 02:07:00 - Tomcat initialized with port 8001 (http)
2024-07-31 02:07:00 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:07:00 - Starting service [Tomcat]
2024-07-31 02:07:00 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:07:00 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:07:00 - Root WebApplicationContext: initialization completed in 1470 ms
2024-07-31 02:07:00 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:07:01 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:07:01 - HHH000026: Second-level cache disabled
2024-07-31 02:07:01 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:07:01 - HikariPool-1 - Starting...
2024-07-31 02:07:01 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@43756cb
2024-07-31 02:07:01 - HikariPool-1 - Start completed.
2024-07-31 02:07:01 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:07:02 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:07:02 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:07:02 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:07:02 -
Using generated security password: 0305ae24-8359-4dcb-850b-823afc31e17d
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:07:02 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:07:03 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:07:03 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:07:03 - Started MedicApiApplication in 4.508 seconds (process running for 4.928)
2024-07-31 02:07:30 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 02:07:30 - Initializing Servlet 'dispatcherServlet'
2024-07-31 02:07:30 - Completed initialization in 1 ms
2024-07-31 02:07:30 - user[User(id=1, [email protected], password=$2a$10$ApXwAGZO3wdKQVUi0ElJFuhs/mJf/9AQf8.I2nb9ZLLyU2qzIvtqO, nickName=nick, birthDt=991204, sexType=MALE)]
2024-07-31 02:07:30 - healthTags[[MEMORY_IMPROVEMENT]]
2024-07-31 02:27:33 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:27:33 - Starting MedicApiApplication using Java 17.0.12 with PID 16060 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:27:33 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:27:33 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:27:34 - Finished Spring Data repository scanning in 51 ms. Found 4 JPA repository interfaces.
2024-07-31 02:27:34 - Tomcat initialized with port 8001 (http)
2024-07-31 02:27:34 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:27:34 - Starting service [Tomcat]
2024-07-31 02:27:34 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:27:34 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:27:34 - Root WebApplicationContext: initialization completed in 1514 ms
2024-07-31 02:27:34 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:27:35 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:27:35 - HHH000026: Second-level cache disabled
2024-07-31 02:27:35 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:27:35 - HikariPool-1 - Starting...
2024-07-31 02:27:35 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1a336906
2024-07-31 02:27:35 - HikariPool-1 - Start completed.
2024-07-31 02:27:35 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:27:36 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:27:36 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:27:36 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:27:36 -
Using generated security password: 1b242b85-d59c-4de3-9b0d-ef9cc2e24e5b
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:27:36 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:27:37 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:27:37 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:27:37 - Started MedicApiApplication in 4.595 seconds (process running for 5.019)
2024-07-31 02:27:47 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 02:27:47 - Initializing Servlet 'dispatcherServlet'
2024-07-31 02:27:47 - Completed initialization in 0 ms
2024-07-31 02:27:47 - user[User(id=1, [email protected], password=$2a$10$ApXwAGZO3wdKQVUi0ElJFuhs/mJf/9AQf8.I2nb9ZLLyU2qzIvtqO, nickName=nick, birthDt=991204, sexType=MALE)]
2024-07-31 02:27:47 - healthTags[[MEMORY_IMPROVEMENT]]
2024-07-31 02:33:51 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:33:51 - Starting MedicApiApplication using Java 17.0.12 with PID 16044 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:33:51 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:33:52 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:33:52 - Finished Spring Data repository scanning in 46 ms. Found 4 JPA repository interfaces.
2024-07-31 02:33:52 - Tomcat initialized with port 8001 (http)
2024-07-31 02:33:52 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:33:52 - Starting service [Tomcat]
2024-07-31 02:33:52 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:33:52 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:33:52 - Root WebApplicationContext: initialization completed in 1510 ms
2024-07-31 02:33:53 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:33:53 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:33:53 - HHH000026: Second-level cache disabled
2024-07-31 02:33:53 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:33:53 - HikariPool-1 - Starting...
2024-07-31 02:33:53 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4e5364a3
2024-07-31 02:33:53 - HikariPool-1 - Start completed.
2024-07-31 02:33:53 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:33:54 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:33:54 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:33:55 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:33:55 -
Using generated security password: a6d60c55-0ce8-4715-90b6-3df9a8adce6c
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:33:55 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:33:55 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:33:55 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:33:55 - Started MedicApiApplication in 4.694 seconds (process running for 5.135)
2024-07-31 02:33:57 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 02:33:57 - Initializing Servlet 'dispatcherServlet'
2024-07-31 02:33:57 - Completed initialization in 0 ms
2024-07-31 02:34:57 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:34:57 - Starting MedicApiApplication using Java 17.0.12 with PID 18328 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:34:57 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:34:58 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:34:58 - Finished Spring Data repository scanning in 66 ms. Found 4 JPA repository interfaces.
2024-07-31 02:34:59 - Tomcat initialized with port 8001 (http)
2024-07-31 02:34:59 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:34:59 - Starting service [Tomcat]
2024-07-31 02:34:59 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:34:59 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:34:59 - Root WebApplicationContext: initialization completed in 1881 ms
2024-07-31 02:34:59 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:34:59 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:35:00 - HHH000026: Second-level cache disabled
2024-07-31 02:35:00 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:35:00 - HikariPool-1 - Starting...
2024-07-31 02:35:00 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5f5a33ed
2024-07-31 02:35:00 - HikariPool-1 - Start completed.
2024-07-31 02:35:00 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:35:01 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:35:01 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:35:02 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:35:02 -
Using generated security password: 5206f17f-bfd3-4eca-9f41-5e979028bc5a
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:35:02 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:35:03 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:35:03 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:35:03 - Started MedicApiApplication in 5.789 seconds (process running for 6.27)
2024-07-31 02:35:05 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 02:35:05 - Initializing Servlet 'dispatcherServlet'
2024-07-31 02:35:05 - Completed initialization in 0 ms
2024-07-31 02:35:05 - #1722360905575 | took 9ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select p1_0.id,p1_0.expiration_date,p1_0.file_info_id,p1_0.functionally_contents,p1_0.health_tag,p1_0.ingest_precaution,p1_0.intake_method,p1_0.manufacturer_name,p1_0.normal_price,p1_0.other_materials,p1_0.product_name,p1_0.register_date,p1_0.report_number,p1_0.sale_price from product p1_0
select p1_0.id,p1_0.expiration_date,p1_0.file_info_id,p1_0.functionally_contents,p1_0.health_tag,p1_0.ingest_precaution,p1_0.intake_method,p1_0.manufacturer_name,p1_0.normal_price,p1_0.other_materials,p1_0.product_name,p1_0.register_date,p1_0.report_number,p1_0.sale_price from product p1_0;
2024-07-31 02:35:05 - #1722360905592 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=18;
2024-07-31 02:35:05 - #1722360905604 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=17;
2024-07-31 02:35:05 - #1722360905616 | took 10ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=20;
2024-07-31 02:35:05 - #1722360905623 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=22;
2024-07-31 02:35:05 - #1722360905629 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=31;
2024-07-31 02:35:05 - #1722360905635 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=23;
2024-07-31 02:35:05 - #1722360905641 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=28;
2024-07-31 02:35:05 - #1722360905647 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=21;
2024-07-31 02:35:05 - #1722360905654 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=26;
2024-07-31 02:35:05 - #1722360905660 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=24;
2024-07-31 02:35:05 - #1722360905668 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=19;
2024-07-31 02:35:05 - #1722360905674 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=29;
2024-07-31 02:35:05 - #1722360905681 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=25;
2024-07-31 02:35:05 - #1722360905690 | took 7ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=30;
2024-07-31 02:35:05 - #1722360905700 | took 6ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=?
select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=27;
2024-07-31 02:35:05 - #1722360905711 | took 6ms | commit | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
;
2024-07-31 02:35:05 - #1722360905780 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=?
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=5;
2024-07-31 02:35:05 - #1722360905787 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=?
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=14;
2024-07-31 02:35:05 - #1722360905793 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=?
select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=16;
2024-07-31 02:35:52 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 02:35:52 - Starting MedicApiApplication using Java 17.0.12 with PID 3040 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 02:35:52 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 02:35:53 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 02:35:53 - Finished Spring Data repository scanning in 65 ms. Found 4 JPA repository interfaces.
2024-07-31 02:35:53 - Tomcat initialized with port 8001 (http)
2024-07-31 02:35:53 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 02:35:53 - Starting service [Tomcat]
2024-07-31 02:35:53 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 02:35:53 - Initializing Spring embedded WebApplicationContext
2024-07-31 02:35:53 - Root WebApplicationContext: initialization completed in 1536 ms
2024-07-31 02:35:54 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 02:35:54 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 02:35:54 - HHH000026: Second-level cache disabled
2024-07-31 02:35:54 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 02:35:54 - HikariPool-1 - Starting...
2024-07-31 02:35:54 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@405603b6
2024-07-31 02:35:54 - HikariPool-1 - Start completed.
2024-07-31 02:35:54 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 02:35:55 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 02:35:55 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 02:35:56 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 02:35:56 -
Using generated security password: 4a310fc6-7de7-43b8-a425-3e923ccdc5dc
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 02:35:56 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 02:35:56 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 02:35:56 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 02:35:56 - Started MedicApiApplication in 4.722 seconds (process running for 5.171)
2024-07-31 02:36:00 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 02:36:00 - Initializing Servlet 'dispatcherServlet'
2024-07-31 02:36:00 - Completed initialization in 1 ms
2024-07-31 02:36:00 - 8 ms | select p1_0.id,p1_0.expiration_date,p1_0.file_info_id,p1_0.functionally_contents,p1_0.health_tag,p1_0.ingest_precaution,p1_0.intake_method,p1_0.manufacturer_name,p1_0.normal_price,p1_0.other_materials,p1_0.product_name,p1_0.register_date,p1_0.report_number,p1_0.sale_price from product p1_0
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=18
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=17
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=20
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=22
2024-07-31 02:36:00 - 6 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=31
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=23
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=28
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=21
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=26
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=24
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=19
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=29
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=25
2024-07-31 02:36:00 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=30
2024-07-31 02:36:00 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=27
2024-07-31 02:36:00 -
2024-07-31 02:36:00 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=14
2024-07-31 02:36:00 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=4
2024-07-31 02:36:00 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=2
2024-07-31 02:41:02 - request[LoginRequest([email protected], password=qwe123)]
2024-07-31 02:41:02 - 5 ms | select u1_0.id,u1_0.birth_dt,u1_0.email,u1_0.nick_name,u1_0.password,u1_0.sex_type from users u1_0 where u1_0.email='[email protected]'
2024-07-31 02:41:02 - user[User(id=1, [email protected], password=$2a$10$ApXwAGZO3wdKQVUi0ElJFuhs/mJf/9AQf8.I2nb9ZLLyU2qzIvtqO, nickName=nick, birthDt=991204, sexType=MALE)]
2024-07-31 02:41:02 - 4 ms | select uhtl1_0.user_id,uhtl1_0.id,uhtl1_0.health_tag from user_health_tag uhtl1_0 where uhtl1_0.user_id=1
2024-07-31 02:41:02 -
2024-07-31 02:42:50 - request[LoginRequest([email protected], password=qwe123)]
2024-07-31 02:42:50 - 5 ms | select u1_0.id,u1_0.birth_dt,u1_0.email,u1_0.nick_name,u1_0.password,u1_0.sex_type from users u1_0 where u1_0.email='[email protected]'
2024-07-31 02:42:50 - user[User(id=1, [email protected], password=$2a$10$ApXwAGZO3wdKQVUi0ElJFuhs/mJf/9AQf8.I2nb9ZLLyU2qzIvtqO, nickName=nick, birthDt=991204, sexType=MALE)]
2024-07-31 02:42:50 - 5 ms | select uhtl1_0.user_id,uhtl1_0.id,uhtl1_0.health_tag from user_health_tag uhtl1_0 where uhtl1_0.user_id=1
2024-07-31 02:42:50 -
2024-07-31 11:12:04 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 11:12:04 - Starting MedicApiApplication using Java 17.0.12 with PID 10400 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 11:12:04 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 11:12:05 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 11:12:05 - Finished Spring Data repository scanning in 75 ms. Found 8 JPA repository interfaces.
2024-07-31 11:12:06 - Tomcat initialized with port 8001 (http)
2024-07-31 11:12:06 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 11:12:06 - Starting service [Tomcat]
2024-07-31 11:12:06 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 11:12:06 - Initializing Spring embedded WebApplicationContext
2024-07-31 11:12:06 - Root WebApplicationContext: initialization completed in 1941 ms
2024-07-31 11:12:06 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 11:12:06 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 11:12:06 - HHH000026: Second-level cache disabled
2024-07-31 11:12:07 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 11:12:07 - HikariPool-1 - Starting...
2024-07-31 11:12:07 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@29bd2796
2024-07-31 11:12:07 - HikariPool-1 - Start completed.
2024-07-31 11:12:07 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 11:12:08 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 11:12:08 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 11:12:08 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 11:12:09 -
Using generated security password: d2b915dd-9f49-49a2-89b0-3f2c948f1f2c
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 11:12:09 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 11:12:09 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 11:12:09 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 11:12:09 - Started MedicApiApplication in 5.327 seconds (process running for 6.04)
2024-07-31 11:12:51 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 11:12:51 - Initializing Servlet 'dispatcherServlet'
2024-07-31 11:12:51 - Completed initialization in 2 ms
2024-07-31 11:13:21 - request[LoginRequest([email protected], password=qwe123)]
2024-07-31 11:13:22 - 7 ms | select u1_0.id,u1_0.birth_dt,u1_0.email,u1_0.nick_name,u1_0.password,u1_0.sex_type from users u1_0 where u1_0.email='[email protected]'
2024-07-31 11:13:22 - user[User(id=1, [email protected], password=$2a$10$ApXwAGZO3wdKQVUi0ElJFuhs/mJf/9AQf8.I2nb9ZLLyU2qzIvtqO, nickName=nick, birthDt=991204, sexType=MALE)]
2024-07-31 11:13:22 - 6 ms | select uhtl1_0.user_id,uhtl1_0.id,uhtl1_0.health_tag from user_health_tag uhtl1_0 where uhtl1_0.user_id=1
2024-07-31 11:13:22 -
2024-07-31 11:32:28 - sort[REVIEW]
2024-07-31 11:32:28 - 6 ms | select p1_0.id,p1_0.expiration_date,p1_0.file_info_id,p1_0.functionally_contents,p1_0.health_tag,p1_0.ingest_precaution,p1_0.intake_method,p1_0.manufacturer_name,p1_0.normal_price,p1_0.other_materials,p1_0.product_name,p1_0.register_date,p1_0.report_number,p1_0.sale_price from product p1_0
2024-07-31 11:32:28 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=18
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=17
2024-07-31 11:32:28 - 12 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=20
2024-07-31 11:32:28 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=22
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=31
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=23
2024-07-31 11:32:28 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=28
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=21
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=26
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=24
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=19
2024-07-31 11:32:28 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=29
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=25
2024-07-31 11:32:28 - 4 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=30
2024-07-31 11:32:28 - 5 ms | select fi1_0.id,fi1_0.file_ext,fi1_0.file_name,fi1_0.file_ori_name,fi1_0.file_size,fi1_0.file_url from file_info fi1_0 where fi1_0.id=27
2024-07-31 11:32:28 - productList[[Product(id=1, productName=관절엔 콘드로이친 1200, manufacturerName=콜마비앤에이치(주)음성공장, normalPrice=297000, salePrice=171520, healthTag=JOINT_BONE_HEALTH, reportNumber=200600200031905, registerDate=20201203, expirationDate=제조일로부터 2년, intakeMethod=1일 1회, 1회 2정을 물과 함께 섭취하십시오., ingestPrecaution=-특이체질, 알레르기 체질의 경우에는 간혹 개인에 따라 과민반응을 나타낼 수 있으므로 원료를 확인한 후 섭취하십시오.
-유통기한이 경과된 제품은 섭취하지 마십시오.
-영·유아, 어린이, 임산부 및 수유부는 섭취에 주의할 것
-이상사례 발생 시 섭취를 중단하고 전문가와 상담할 것
-특정질환(알레르기 체질 등)이 있는 분은 섭취에 주의할 것
-수술 전후 또는 항응고제, 항혈소판제, 비스테로이드계 항염증약 복용자는 섭취 전 전문의와 상담할 것
천식이 있는 사람은 섭취 전 전문의와 상담할 것, functionallyContents=추가필요, otherMaterials=해조칼슘
쌀겨추출분말
유산균혼합분말
건조효모(비타민D)
건조효모(아연함유)
건조효모(셀렌함유), fileInfo=FileInfo(id=18, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????????? ????????????.png, fileUrl=/product, fileExt=png, fileSize=1244647)), Product(id=2, productName=프리미엄 관절팔팔, manufacturerName=(주)씨스팡, normalPrice=100000, salePrice=47000, healthTag=JOINT_BONE_HEALTH, reportNumber=2004001536230, registerDate=20200417, expirationDate=제조일로부터 24개월, intakeMethod=1일 2회, 1회 1캡슐을 물과 함께 섭취, ingestPrecaution=-임산부 및 수유부는 섭취를 피할 것
-간 질환이 있거나 혈전용해제 등 복용 시 전문가와 상담할 것
-알레르기 체질 등은 개인에 따라 과민반응을 나타낼 수 있음
-이상 사례 발생 시 섭취를 중단하고 전문가와 상담할 것
-고칼슘혈증이 있거나 의약품 복용 시 전문가와 상담하십시오., functionallyContents=추가필요, otherMaterials=비타민D, 초록입홍합추출오일(기능성원료인정제2004-8호), fileInfo=FileInfo(id=17, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=?????? ??????.png, fileUrl=/product, fileExt=png, fileSize=790540)), Product(id=3, productName=맥스컷 다이어트 부스터3.1, manufacturerName=주식회사한미양행, normalPrice=129000, salePrice=61200, healthTag=DECREASE_BODY_FIT, reportNumber=200400150831677, registerDate=20220419, expirationDate=제조일로부터 18개월까지, intakeMethod=1일 1회, 1회 1포(10g)를 물 350ml에 잘 섞어서 섭취하십시오., ingestPrecaution=-반드시 충분한 물과 함께 섭취할 것 (액상제외), functionallyContents=추가필요, otherMaterials=스피루리나청색소
레몬향분말
레몬농축분말
효소처리스테비아
자일리톨
에리스리톨
D-소비톨
히알루론산혼합제제
치커리뿌리추출물분말
이산화규소
아스파탐
아미노산혼합제제
과일채소혼합분말
고형차
히비스커스추출분말
가르시니아캄보지아 추출물(고시형)
녹차추출물(고시형)
옥수수수염추출분말, fileInfo=FileInfo(id=20, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=???????? ???????? ??????3.1.png, fileUrl=/product, fileExt=png, fileSize=1071568)), Product(id=4, productName=베러다운핏, manufacturerName=(주)알피바이오, normalPrice=50000, salePrice=19800, healthTag=DECREASE_BODY_FIT, reportNumber=200400170061648, registerDate=20230524, expirationDate=제조일로부터 24개월까지, intakeMethod=1일 1회, 1회 2정을 충분한 물과 함께 섭취하십시오., ingestPrecaution=-어린이, 임산부 및 수유부는 섭취를 피할 것
-간질환이 있거나 의약품 복용 시 전문가와 상담할 것
-카페인이 함유되어 있어 초조감, 불면 등을 나타낼 수 있음
- 식사 후 섭취할 것, functionallyContents=추가필요, otherMaterials=결정셀룰로스
덱스트린
카복시메틸셀룰로스칼슘
스테아린산
이산화규소
스테아린산마그네슘
히드록시프로필메틸셀룰로스
여주추출분말
계피엑기스분말
글리세린초산지방산에스테르
비타민B1질산염
비타민B2
비타민B6염산염
비타민B12
니코틴산아미드
판토텐산칼슘
산화마그네슘
건조효모
엽산
비오틴, fileInfo=FileInfo(id=22, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????????????.png, fileUrl=/product, fileExt=png, fileSize=930248)), Product(id=5, productName=혈당엔 바나바 퍼펙트케어, manufacturerName=주식회사한미양행, normalPrice=35000, salePrice=15900, healthTag=BLOOD_SUGAR_CONTROL, reportNumber=200400150831633, registerDate=20220214, expirationDate=제조일로부터 24개월까지, intakeMethod=1일 1회, 1회 1정을 충분한 물과 함께 섭취, ingestPrecaution=-임산부, 수유부, 어린이 및 수술전후 환자는 섭취에 주의, functionallyContents=null, otherMaterials=결정셀룰로스, 여주추출분말, 해조칼슘, 카복시메틸셀룰로스칼슘, 이산화규소 스테아린산마그네슘, 히드록시프로필메틸셀룰로스, 산화아연, 건조효모(셀렌함유), 비타민C, fileInfo=FileInfo(id=31, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????????? ?????? ??????? ????.png, fileUrl=/product, fileExt=png, fileSize=887517)), Product(id=6, productName=뺀다요, manufacturerName=노비스바이오(주), normalPrice=51000, salePrice=49000, healthTag=BLOOD_SUGAR_CONTROL, reportNumber=20040020041412, registerDate=20200616, expirationDate=제조일로부터 24개월까지, intakeMethod=1일 1회, 1회 1포(5g)을 반드시 물 200ml에 타서 섭취하십시오., ingestPrecaution=-반드시 충분한 물과 함께 섭취할 것(액상제외)
-간질환이 있거나 의약품 복용 시 전문가와 상담할 것
-카페인이 함유되어 있어 초조감, 불면 등을 나타낼 수 있음
-식사 후 섭취할 것
- 카페인을 함유한 식품의 섭취에 주의할 것
-이상사례 발생 시 섭취를 중단하고 전문가와 상담할 것, functionallyContents=null, otherMaterials=기타가공품, 요거트분말, 유산균배양액, 유청분말, 물엿, 유청분말, 가공유지 유크림, 유당, 카제인나트륨, 제이인산칼륨, 레시틴, 글리세린지방산에스테르, 구연산 요거트분말, 우유단백질, 에리스리톨, 결정셀룰로스, 스테비올배당체, 아세설팜칼륨 이산화규소, 수크랄로스, fileInfo=FileInfo(id=23, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=???????.png, fileUrl=/product, fileExt=png, fileSize=1199885)), Product(id=7, productName=핼런스 클로렐라, manufacturerName=(주)바이오 로제트, normalPrice=46970, salePrice=41330, healthTag=SKIN_HEALTH, reportNumber=20040017015285, registerDate=20201217, expirationDate=제조일로부터 24개월까지, intakeMethod=1일 1회, 1회 1포(20g)를 물 또는 우유(200~300mL)에 타서 섭취한다., ingestPrecaution=-섭취 시 섭취량 및 섭취방법을 확인하고 섭취하십시오.
-질병을 치료중이거나 알레르기 체질인 경우 의사와 상담 후 섭취여부를 결정하십시오.
-특이체질, 알레르기 체질인 경우에는 개인에 따라 과민반응이 나타날 수 있으므로 원료를 확인 후 섭취하십시오.
-제품 개봉 또는 섭취 시 포장재에 의해 상처를 입을 수 있으므로 주의하시기 바랍니다, functionallyContents=null, otherMaterials= 결정셀룰로스, 히드록시프로필메틸셀룰로스, 이산화규소, 스테아린산마그네슘, 홍화황색소, 덱스트린, 홍화황색소, 카복시메틸셀룰로스칼슘, 이산화티타늄, fileInfo=FileInfo(id=28, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=??????????.png, fileUrl=/product, fileExt=png, fileSize=1118589)), Product(id=8, productName=바디픽 멀티비타민 포우먼, manufacturerName=(주)네추럴에프앤피 2공장, normalPrice=50310, salePrice=44270, healthTag=SKIN_HEALTH, reportNumber=200400200141098, registerDate=20180927, expirationDate=제조일부터 24개월, intakeMethod=1일 2회, 1회 2정씩 물과 함께 섭취하십시오., ingestPrecaution=알레르기 체질이신 경우 성분을 확인 한 후 섭취여부를 결정하여야함, functionallyContents=null, otherMaterials=결정셀룰로스, 히드록시프로필메틸셀룰로스, 이산화규소, 스테아린산마그네슘, 홍화황색소, 덱스트린, 홍화황색소, 카복시메틸셀룰로스칼슘, 이산화티타늄, 자당지방산에스테르, 치자청색소, 치자청색소, 덱스트린, 석류농축분말
, fileInfo=FileInfo(id=21, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=??????? ???????????? ???????.png, fileUrl=/product, fileExt=png, fileSize=909422)), Product(id=9, productName=애터미헤모힘, manufacturerName=콜마비앤에이치(주), normalPrice=82990, salePrice=81000, healthTag=IMMUNE_FUNCTION_IMPROVEMENT, reportNumber=201200200752, registerDate=20120910, expirationDate=2년, intakeMethod=20ml 1일 2회, ingestPrecaution=-어린이, 임산부 및 수유부는 섭취를 피할 것.
- 월경불순이나 출혈성 질환이 있는 여성의 경우 전문가와 상담할 것.
- 항응고제 복용시 전문가와 상담할 것.
- 알레르기 체질 등은 개인에 따라 과민반응을 나타낼수 있음.
- 이상사례 발생시 섭취를 중단하고 전문가와 상담할 것., functionallyContents=null, otherMaterials=DL-사과산
구연산
해조분말
해조분말
알긴산나트륨
비타민 C
구아검
구연산
프락토올리고당
물엿
사양벌꿀
판토텐산칼슘
비타민 B6 염산염
비타민 B1염산염
비타민 B2
정제수, fileInfo=FileInfo(id=26, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=?????? ????.png, fileUrl=/product, fileExt=png, fileSize=265927)), Product(id=10, productName=센트룸 프로바이오 면역케어, manufacturerName=콜마비앤에이치(주)음성공장, normalPrice=31900, salePrice=30300, healthTag=IMMUNE_FUNCTION_IMPROVEMENT, reportNumber=200600200032607, registerDate=20221219, expirationDate=제조일로부터 18개월, intakeMethod=1일 1회, 1회 1캡슐을 물과 함께 섭취하십시오., ingestPrecaution=1) 영·유아, 어린이, 임산부 및 수유부는 섭취에 주의
2) 특정질환(알레르기 체질 등)이 있는 분은 섭취에 주의
3) 이상사례 발생 시 섭취를 중단하고 전문가와 상담할 것
4) 질환이 있거나 의약품 복용 시 전문가와 상담할 것
5) 알레르기 체질 등은 개인에 따라 과민반응을 나타낼 수 있음
6) 어린이가 함부로 섭취하지 않도록 일일섭취량 방법을 지도할 것, functionallyContents=null, otherMaterials=null, fileInfo=FileInfo(id=24, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=???????? ?????????? ??????????.png, fileUrl=/product, fileExt=png, fileSize=442676)), Product(id=11, productName=기억력 인지력 포스파티딜세린 징코, manufacturerName=(주)비오팜, normalPrice=21100, salePrice=18990, healthTag=MEMORY_IMPROVEMENT, reportNumber=200400170211167, registerDate=20211012, expirationDate=제조일로부터 24개월까지, intakeMethod=1일 2회, 1회 1캡슐을 물과 함께 섭취하십시오., ingestPrecaution=임산부와 수유부는 섭취에 주의
과잉섭취 시 위장장애나 불면증을 유발할 수 있음
임산부, 수유부, 어린이 및 수술전후 환자는 섭취에 주의
의약품(항응고제) 복용 시 섭취에 주의, functionallyContents=null, otherMaterials=토마토농축분말
정제수
이산화규소
포도당시럽
변성전분
DL-알파-토코페릴 초산염(고시형)
비타민E혼합제제
이산화규소
자당지방산에스테르
스테아린산마그네슘
레시틴
결정셀룰로스
해조칼슘
토마토농축액
홍삼농축액분말
아라비아검
덱스트린, fileInfo=FileInfo(id=19, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=???????? ???????? ???????????????? ?????.png, fileUrl=/product, fileExt=png, fileSize=1964502)), Product(id=12, productName=헬시부트 올데이샷, manufacturerName=코스맥스바이오(주), normalPrice=30000, salePrice=19900, healthTag=MEMORY_IMPROVEMENT, reportNumber=200400200023552, registerDate=20240105, expirationDate=제조일로부터 18개월, intakeMethod=1일 1회, 1회 1병을 섭취하십시오., ingestPrecaution=정제와 캡슐은 섭취 시 목에 걸릴 수 있으므로 반드시 액상 또는 물과 함께 섭취하십시오., functionallyContents=null, otherMaterials=식물혼합농축액
락색소
정제수
프락토올리고당
열대과일혼합농축액
오렌지농축액
오렌지향
결정셀룰로스
구연산
옥수수전분
구연산삼나트륨
카나우바왁스
효소처리스테비아
히드록시프로필, fileInfo=FileInfo(id=29, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????????? ??????????.png, fileUrl=/product, fileExt=png, fileSize=1236212)), Product(id=13, productName=익스트림 올인원 이뮨 종합부스터 더 활력샷, 14회분, 1개, manufacturerName=웰니스 헬스케어, normalPrice=67800, salePrice=51000, healthTag=ABILITY_OF_PERFORM_EXERCISE, reportNumber=20200012345, registerDate=20240301, expirationDate=2026년 3월 1일, intakeMethod=1일 1회, 1회 1병 (50ml), ingestPrecaution=과다 섭취 시 위장장애가 발생할 수 있습니다.
특정 성분에 알레르기가 있는 경우 섭취를 피하십시오.
어린이, 임산부 및 수유부는 섭취 전 전문가와 상담하십시오. |
| 기능성 내용 | 면역력 증진에 도움을 줄 수 있습니다.
피로 개선에 도움을 줄 수 있습니다.
항산화 작용을 통해 세포 보호에 도움을 줄 수 있습니다. |, functionallyContents=null, otherMaterials=프락토올리고당
열대과일혼합농축액
오렌지농축액
오렌지향
결정셀룰로스, fileInfo=null), Product(id=14, productName=아르기닌 파워 젤리스틱, manufacturerName=헬스파워 식품, normalPrice=89000, salePrice=87000, healthTag=ABILITY_OF_PERFORM_EXERCISE, reportNumber=202400067890, registerDate=20240415, expirationDate=2026년 4월 15일, intakeMethod=1일 1회, 1회 1스틱 (20g), ingestPrecaution=| 섭취 시 주의사항 | 과다 섭취 시 위장장애가 발생할 수 있습니다.
특정 성분에 알레르기가 있는 경우 섭취를 피하십시오.
어린이, 임산부 및 수유부는 섭취 전 전문가와 상담하십시오. |
| 기능성 내용 | 운동 능력 향상에 도움을 줄 수 있습니다.
혈액 순환 개선에 도움을 줄 수 있습니다., functionallyContents=null, otherMaterials=물엿
사양벌꿀
판토텐산칼슘
비타민 B6 염산염
비타민 B1염산, fileInfo=FileInfo(id=25, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????????? ???? ??????????.jpg, fileUrl=/product, fileExt=jpg, fileSize=52219)), Product(id=15, productName=헬퓨 E데이펙, manufacturerName=헬퓨 헬스케어, normalPrice=67500, salePrice=54000, healthTag=BLOOD_TRIGLYCERIDES_IMPROVEMENT, reportNumber=20240024680, registerDate=20240520, expirationDate=2026년 5월 20일, intakeMethod=1일 1회, 1회 1캡슐, ingestPrecaution=과다 섭취 시 소화 장애가 발생할 수 있습니다.
특정 성분에 알레르기가 있는 경우 섭취를 피하십시오.
어린이, 임산부 및 수유부는 섭취 전 전문가와 상담하십시오. |
| 기능성 내용 | 중성지방 개선에 도움을 줄 수 있습니다.
혈액 순환 개선에 도움을 줄 수 있습니다.
항산화 작용을 통해 세포 보호에 도움을 줄 수 있습니다. |
| 기타 원료 | 오메가-3 지방산 (EPA 및 DHA), functionallyContents=null, otherMaterials=구연산
옥수수전분
구연산삼나트륨
카나우바왁스
효소처리스테비아
히드록시프로필메틸셀룰로스
유청분말
콩기름(대두유)
이산화티타늄
치자황색소, fileInfo=FileInfo(id=30, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=????? E???????.jpg, fileUrl=/product, fileExt=jpg, fileSize=101876)), Product(id=16, productName=콜레스타 LDL HDL, manufacturerName=바이오헬스 연구소, normalPrice=214500, salePrice=141000, healthTag=BLOOD_TRIGLYCERIDES_IMPROVEMENT, reportNumber=202400013579, registerDate=20240610, expirationDate=2026년 6월 10일, intakeMethod=1일 1회, 1회 1캡슐, ingestPrecaution=| 과다 섭취 시 소화 장애가 발생할 수 있습니다.
특정 성분에 알레르기가 있는 경우 섭취를 피하십시오., functionallyContents=null, otherMaterials=null, fileInfo=FileInfo(id=27, fileName=6645f231-5798-42db-a198-cdd45c1f6e49, fileOriName=?????????.jpg, fileUrl=/product, fileExt=jpg, fileSize=185690))]]
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=2
2024-07-31 11:32:28 - 17 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=1
2024-07-31 11:32:28 - 13 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=3
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=4
2024-07-31 11:32:28 - 6 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=5
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=6
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=7
2024-07-31 11:32:28 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=8
2024-07-31 11:32:28 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=9
2024-07-31 11:32:28 - 7 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=10
2024-07-31 11:32:28 - 20 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=11
2024-07-31 11:32:28 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=12
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=13
2024-07-31 11:32:28 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=14
2024-07-31 11:32:28 - 5 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=15
2024-07-31 11:32:28 - 4 ms | select rl1_0.product_id,rl1_0.id,rl1_0.age_group,rl1_0.purchase_date,rl1_0.review_date,rl1_0.star_point,rl1_0.user_id from review rl1_0 where rl1_0.product_id=16
2024-07-31 11:32:28 -
2024-07-31 11:48:00 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 11:48:00 - Starting MedicApiApplication using Java 17.0.12 with PID 9256 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 11:48:00 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 11:48:01 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 11:48:01 - Finished Spring Data repository scanning in 67 ms. Found 8 JPA repository interfaces.
2024-07-31 11:48:02 - Tomcat initialized with port 8001 (http)
2024-07-31 11:48:02 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 11:48:02 - Starting service [Tomcat]
2024-07-31 11:48:02 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 11:48:02 - Initializing Spring embedded WebApplicationContext
2024-07-31 11:48:02 - Root WebApplicationContext: initialization completed in 1617 ms
2024-07-31 11:48:02 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 11:48:02 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 11:48:02 - HHH000026: Second-level cache disabled
2024-07-31 11:48:02 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 11:48:02 - HikariPool-1 - Starting...
2024-07-31 11:48:03 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1214c98b
2024-07-31 11:48:03 - HikariPool-1 - Start completed.
2024-07-31 11:48:03 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 11:48:03 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 11:48:04 - #1722394084028 | took 87ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table file_info modify column file_ext varchar(255)
alter table file_info modify column file_ext varchar(255);
2024-07-31 11:48:04 - #1722394084073 | took 41ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
create table like_v2 (id bigint not null auto_increment, review_v2_id bigint not null, user_v2_id bigint not null, primary key (id)) engine=InnoDB
create table like_v2 (id bigint not null auto_increment, review_v2_id bigint not null, user_v2_id bigint not null, primary key (id)) engine=InnoDB;
2024-07-31 11:48:04 - #1722394084134 | took 59ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table product modify column ingest_precaution varchar(255)
alter table product modify column ingest_precaution varchar(255);
2024-07-31 11:48:04 - GenerationTarget encountered exception accepting command : Error executing DDL "alter table product modify column ingest_precaution varchar(255)" via JDBC [Data truncated for column 'ingest_precaution' at row 1]
org.hibernate.tool.schema.spi.CommandAcceptanceException: Error executing DDL "alter table product modify column ingest_precaution varchar(255)" via JDBC [Data truncated for column 'ingest_precaution' at row 1]
at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:94)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlString(AbstractSchemaMigrator.java:575)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.applySqlStrings(AbstractSchemaMigrator.java:515)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.migrateTable(AbstractSchemaMigrator.java:333)
at org.hibernate.tool.schema.internal.GroupedSchemaMigratorImpl.performTablesMigration(GroupedSchemaMigratorImpl.java:84)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.performMigration(AbstractSchemaMigrator.java:232)
at org.hibernate.tool.schema.internal.AbstractSchemaMigrator.doMigration(AbstractSchemaMigrator.java:117)
at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.performDatabaseAction(SchemaManagementToolCoordinator.java:280)
at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.lambda$process$5(SchemaManagementToolCoordinator.java:144)
at java.base/java.util.HashMap.forEach(HashMap.java:1421)
at org.hibernate.tool.schema.spi.SchemaManagementToolCoordinator.process(SchemaManagementToolCoordinator.java:141)
at org.hibernate.boot.internal.SessionFactoryObserverForSchemaExport.sessionFactoryCreated(SessionFactoryObserverForSchemaExport.java:37)
at org.hibernate.internal.SessionFactoryObserverChain.sessionFactoryCreated(SessionFactoryObserverChain.java:35)
at org.hibernate.internal.SessionFactoryImpl.<init>(SessionFactoryImpl.java:322)
at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:457)
at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1506)
at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:75)
at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:390)
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:409)
at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:396)
at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:366)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:954)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625)
at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:335)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352)
at org.lion.medicapi.MedicApiApplication.main(MedicApiApplication.java:10)
Caused by: java.sql.SQLException: Data truncated for column 'ingest_precaution' at row 1
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:130)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
at com.mysql.cj.jdbc.StatementImpl.executeInternal(StatementImpl.java:770)
at com.mysql.cj.jdbc.StatementImpl.execute(StatementImpl.java:653)
at com.zaxxer.hikari.pool.ProxyStatement.execute(ProxyStatement.java:94)
at com.zaxxer.hikari.pool.HikariProxyStatement.execute(HikariProxyStatement.java)
at com.p6spy.engine.wrapper.StatementWrapper.execute(StatementWrapper.java:115)
at org.hibernate.tool.schema.internal.exec.GenerationTargetToDatabase.accept(GenerationTargetToDatabase.java:80)
... 37 common frames omitted
2024-07-31 11:48:04 - #1722394084190 | took 50ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
create table product_v2 (id bigint not null auto_increment, expiration_date varchar(255), functionally_contents varchar(255), image_url varchar(255), ingest_precaution varchar(255), intake_method varchar(255), manufacturer varchar(255), name varchar(255) not null, normal_price integer, other_materials varchar(255), register_date varchar(255), report_number varchar(255), sale_price integer, tag_type enum ('관절_뼈건강','기억력_개선','면역기능_개선','운동수행_능력','체지방감소','피부건강','혈당조절','혈중_중성지방_개선') not null, primary key (id)) engine=InnoDB
create table product_v2 (id bigint not null auto_increment, expiration_date varchar(255), functionally_contents varchar(255), image_url varchar(255), ingest_precaution varchar(255), intake_method varchar(255), manufacturer varchar(255), name varchar(255) not null, normal_price integer, other_materials varchar(255), register_date varchar(255), report_number varchar(255), sale_price integer, tag_type enum ('관절_뼈건강','기억력_개선','면역기능_개선','운동수행_능력','체지방감소','피부건강','혈당조절','혈중_중성지방_개선') not null, primary key (id)) engine=InnoDB;
2024-07-31 11:48:04 - #1722394084300 | took 108ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table review modify column star_point float(53)
alter table review modify column star_point float(53);
2024-07-31 11:48:04 - #1722394084347 | took 46ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
create table review_v2 (id bigint not null auto_increment, contents varchar(255), purchase_date varchar(255), review_date varchar(255), star integer, product_v2_id bigint not null, user_v2_id bigint not null, primary key (id)) engine=InnoDB
create table review_v2 (id bigint not null auto_increment, contents varchar(255), purchase_date varchar(255), review_date varchar(255), star integer, product_v2_id bigint not null, user_v2_id bigint not null, primary key (id)) engine=InnoDB;
2024-07-31 11:48:04 - #1722394084390 | took 42ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
create table user_tags (user_id bigint not null, tag enum ('관절_뼈건강','기억력_개선','면역기능_개선','운동수행_능력','체지방감소','피부건강','혈당조절','혈중_중성지방_개선')) engine=InnoDB
create table user_tags (user_id bigint not null, tag enum ('관절_뼈건강','기억력_개선','면역기능_개선','운동수행_능력','체지방감소','피부건강','혈당조절','혈중_중성지방_개선')) engine=InnoDB;
2024-07-31 11:48:04 - #1722394084435 | took 43ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
create table user_v2 (id bigint not null auto_increment, birth_date varchar(255) not null, email varchar(255) not null, gender_type enum ('남성','여성') not null, name varchar(255) not null, password varchar(255) not null, primary key (id)) engine=InnoDB
create table user_v2 (id bigint not null auto_increment, birth_date varchar(255) not null, email varchar(255) not null, gender_type enum ('남성','여성') not null, name varchar(255) not null, password varchar(255) not null, primary key (id)) engine=InnoDB;
2024-07-31 11:48:04 - #1722394084455 | took 17ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table user_v2 drop index UK5nu60mjmccmr7gyeheix6hsmv
alter table user_v2 drop index UK5nu60mjmccmr7gyeheix6hsmv;
2024-07-31 11:48:04 - #1722394084496 | took 40ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table user_v2 add constraint UK5nu60mjmccmr7gyeheix6hsmv unique (email)
alter table user_v2 add constraint UK5nu60mjmccmr7gyeheix6hsmv unique (email);
2024-07-31 11:48:04 - #1722394084606 | took 107ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table like_v2 add constraint FKkwd1af81s4upekpltft4lfo2s foreign key (review_v2_id) references review_v2 (id)
alter table like_v2 add constraint FKkwd1af81s4upekpltft4lfo2s foreign key (review_v2_id) references review_v2 (id);
2024-07-31 11:48:04 - #1722394084702 | took 96ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table like_v2 add constraint FKc2v6isqfvovumu0vyvllpseor foreign key (user_v2_id) references user_v2 (id)
alter table like_v2 add constraint FKc2v6isqfvovumu0vyvllpseor foreign key (user_v2_id) references user_v2 (id);
2024-07-31 11:48:04 - #1722394084733 | took 6ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`review` where 1=0
select * from `medic`.`review` where 1=0;
2024-07-31 11:48:04 - #1722394084747 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`users` where 1=0
select * from `medic`.`users` where 1=0;
2024-07-31 11:48:04 - #1722394084769 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`file_info` where 1=0
select * from `medic`.`file_info` where 1=0;
2024-07-31 11:48:04 - #1722394084790 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`product` where 1=0
select * from `medic`.`product` where 1=0;
2024-07-31 11:48:04 - #1722394084801 | took 4ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`users` where 1=0
select * from `medic`.`users` where 1=0;
2024-07-31 11:48:04 - #1722394084934 | took 131ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table review_v2 add constraint FKgcwj6eux2ig864kwg77h5i2jk foreign key (product_v2_id) references product_v2 (id)
alter table review_v2 add constraint FKgcwj6eux2ig864kwg77h5i2jk foreign key (product_v2_id) references product_v2 (id);
2024-07-31 11:48:05 - #1722394085060 | took 125ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table review_v2 add constraint FKclac5bbt011osgtfcil4dhdnc foreign key (user_v2_id) references user_v2 (id)
alter table review_v2 add constraint FKclac5bbt011osgtfcil4dhdnc foreign key (user_v2_id) references user_v2 (id);
2024-07-31 11:48:05 - #1722394085165 | took 105ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
alter table user_tags add constraint FK35tmju58wa3ngeghftjb5qfkr foreign key (user_id) references user_v2 (id)
alter table user_tags add constraint FK35tmju58wa3ngeghftjb5qfkr foreign key (user_id) references user_v2 (id);
2024-07-31 11:48:05 - #1722394085191 | took 5ms | statement | connection 1| url jdbc:mysql://52.78.188.110:3306/medic?allowPublicKeyRetrieval=true&useSSL=false
select * from `medic`.`users` where 1=0
select * from `medic`.`users` where 1=0;
2024-07-31 11:48:05 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 11:48:05 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 11:48:05 -
Using generated security password: 8692c982-f452-4d1b-a91b-78d599565695
This generated password is for development use only. Your security configuration must be updated before running your application in production.
2024-07-31 11:48:05 - Global AuthenticationManager configured with UserDetailsService bean with name inMemoryUserDetailsManager
2024-07-31 11:48:06 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 11:48:06 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 11:48:06 - Started MedicApiApplication in 6.093 seconds (process running for 6.528)
2024-07-31 13:20:24 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 13:20:24 - Starting MedicApiApplication using Java 17.0.12 with PID 1896 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 13:20:24 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 13:20:25 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 13:20:25 - Finished Spring Data repository scanning in 69 ms. Found 8 JPA repository interfaces.
2024-07-31 13:20:25 - Tomcat initialized with port 8001 (http)
2024-07-31 13:20:25 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 13:20:26 - Starting service [Tomcat]
2024-07-31 13:20:26 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 13:20:26 - Initializing Spring embedded WebApplicationContext
2024-07-31 13:20:26 - Root WebApplicationContext: initialization completed in 1488 ms
2024-07-31 13:20:26 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 13:20:26 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 13:20:26 - HHH000026: Second-level cache disabled
2024-07-31 13:20:26 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 13:20:26 - HikariPool-1 - Starting...
2024-07-31 13:20:26 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@9d3a7a1
2024-07-31 13:20:26 - HikariPool-1 - Start completed.
2024-07-31 13:20:26 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 13:20:27 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 13:20:27 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 13:20:27 - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'authController' defined in file [C:\Users\user\Documents\kmong\medic-api\build\classes\java\main\org\lion\medicapi\v1\controller\AuthController.class]: Unsatisfied dependency expressed through constructor parameter 0: Error creating bean with name 'authService' defined in file [C:\Users\user\Documents\kmong\medic-api\build\classes\java\main\org\lion\medicapi\v1\service\AuthService.class]: Unsatisfied dependency expressed through constructor parameter 2: No qualifying bean of type 'org.springframework.security.crypto.password.PasswordEncoder' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {}
2024-07-31 13:20:27 - Closing JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 13:20:27 - HikariPool-1 - Shutdown initiated...
2024-07-31 13:20:28 - HikariPool-1 - Shutdown completed.
2024-07-31 13:20:28 - Stopping service [Tomcat]
2024-07-31 13:20:28 -
Error starting ApplicationContext. To display the condition evaluation report re-run your application with 'debug' enabled.
2024-07-31 13:20:28 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 2 of constructor in org.lion.medicapi.v1.service.AuthService required a bean of type 'org.springframework.security.crypto.password.PasswordEncoder' that could not be found.
Action:
Consider defining a bean of type 'org.springframework.security.crypto.password.PasswordEncoder' in your configuration.
2024-07-31 13:23:25 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 13:23:25 - Starting MedicApiApplication using Java 17.0.12 with PID 7440 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 13:23:25 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 13:23:26 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 13:23:26 - Finished Spring Data repository scanning in 54 ms. Found 8 JPA repository interfaces.
2024-07-31 13:23:27 - Tomcat initialized with port 8001 (http)
2024-07-31 13:23:27 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 13:23:27 - Starting service [Tomcat]
2024-07-31 13:23:27 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 13:23:27 - Initializing Spring embedded WebApplicationContext
2024-07-31 13:23:27 - Root WebApplicationContext: initialization completed in 1389 ms
2024-07-31 13:23:27 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 13:23:27 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 13:23:27 - HHH000026: Second-level cache disabled
2024-07-31 13:23:27 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 13:23:27 - HikariPool-1 - Starting...
2024-07-31 13:23:28 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@762da62b
2024-07-31 13:23:28 - HikariPool-1 - Start completed.
2024-07-31 13:23:28 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 13:23:28 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 13:23:28 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 13:23:29 - Hibernate is in classpath; If applicable, HQL parser will be used.
2024-07-31 13:23:29 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 13:23:29 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 13:23:29 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 13:23:30 - Started MedicApiApplication in 4.546 seconds (process running for 5.005)
2024-07-31 13:23:56 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 13:23:56 - Starting MedicApiApplication using Java 17.0.12 with PID 15032 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 13:23:56 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 13:23:56 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 13:23:56 - Finished Spring Data repository scanning in 69 ms. Found 8 JPA repository interfaces.
2024-07-31 13:23:57 - Tomcat initialized with port 8001 (http)
2024-07-31 13:23:57 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 13:23:57 - Starting service [Tomcat]
2024-07-31 13:23:57 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 13:23:57 - Initializing Spring embedded WebApplicationContext
2024-07-31 13:23:57 - Root WebApplicationContext: initialization completed in 1349 ms
2024-07-31 13:23:57 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 13:23:57 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 13:23:57 - HHH000026: Second-level cache disabled
2024-07-31 13:23:58 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 13:23:58 - HikariPool-1 - Starting...
2024-07-31 13:23:58 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2a54c92e
2024-07-31 13:23:58 - HikariPool-1 - Start completed.
2024-07-31 13:23:58 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 13:23:59 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 13:23:59 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 13:23:59 - Hibernate is in classpath; If applicable, HQL parser will be used.
2024-07-31 13:24:00 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 13:24:00 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 13:24:00 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 13:24:00 - Started MedicApiApplication in 4.579 seconds (process running for 4.984)
2024-07-31 13:24:42 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 13:24:42 - Initializing Servlet 'dispatcherServlet'
2024-07-31 13:24:42 - Completed initialization in 1 ms
2024-07-31 13:24:43 - 6 ms | select pv1_0.id,pv1_0.expiration_date,pv1_0.functionally_contents,pv1_0.image_url,pv1_0.ingest_precaution,pv1_0.intake_method,pv1_0.manufacturer,pv1_0.name,pv1_0.normal_price,pv1_0.other_materials,pv1_0.register_date,pv1_0.report_number,pv1_0.sale_price,pv1_0.tag_type from product_v2 pv1_0
2024-07-31 13:24:43 -
2024-07-31 13:27:39 - HV000001: Hibernate Validator 8.0.1.Final
2024-07-31 13:27:39 - Starting MedicApiApplication using Java 17.0.12 with PID 2696 (C:\Users\user\Documents\kmong\medic-api\build\classes\java\main started by user in C:\Users\user\Documents\kmong\medic-api)
2024-07-31 13:27:39 - No active profile set, falling back to 1 default profile: "default"
2024-07-31 13:27:39 - Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2024-07-31 13:27:39 - Finished Spring Data repository scanning in 60 ms. Found 8 JPA repository interfaces.
2024-07-31 13:27:40 - Tomcat initialized with port 8001 (http)
2024-07-31 13:27:40 - Initializing ProtocolHandler ["http-nio-8001"]
2024-07-31 13:27:40 - Starting service [Tomcat]
2024-07-31 13:27:40 - Starting Servlet engine: [Apache Tomcat/10.1.26]
2024-07-31 13:27:40 - Initializing Spring embedded WebApplicationContext
2024-07-31 13:27:40 - Root WebApplicationContext: initialization completed in 1374 ms
2024-07-31 13:27:40 - HHH000204: Processing PersistenceUnitInfo [name: default]
2024-07-31 13:27:40 - HHH000412: Hibernate ORM core version 6.5.2.Final
2024-07-31 13:27:40 - HHH000026: Second-level cache disabled
2024-07-31 13:27:41 - No LoadTimeWeaver setup: ignoring JPA class transformer
2024-07-31 13:27:41 - HikariPool-1 - Starting...
2024-07-31 13:27:41 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@79295932
2024-07-31 13:27:41 - HikariPool-1 - Start completed.
2024-07-31 13:27:41 - HHH90000025: MySQLDialect does not need to be specified explicitly using 'hibernate.dialect' (remove the property setting and it will be selected by default)
2024-07-31 13:27:42 - HHH000489: No JTA platform available (set 'hibernate.transaction.jta.platform' to enable JTA platform integration)
2024-07-31 13:27:42 - Initialized JPA EntityManagerFactory for persistence unit 'default'
2024-07-31 13:27:42 - Hibernate is in classpath; If applicable, HQL parser will be used.
2024-07-31 13:27:42 - spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2024-07-31 13:27:43 - Starting ProtocolHandler ["http-nio-8001"]
2024-07-31 13:27:43 - Tomcat started on port 8001 (http) with context path '/'
2024-07-31 13:27:43 - Started MedicApiApplication in 4.519 seconds (process running for 4.94)
2024-07-31 13:27:44 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-31 13:27:44 - Initializing Servlet 'dispatcherServlet'
2024-07-31 13:27:44 - Completed initialization in 2 ms
2024-07-31 13:27:44 - 7 ms | select uv1_0.id from user_v2 uv1_0 where uv1_0.email='[email protected]' limit 1
2024-07-31 13:27:44 - 4 ms | select uv1_0.id from user_v2 uv1_0 where uv1_0.name='tester' limit 1
2024-07-31 13:27:44 - 5 ms | insert into user_v2 (birth_date,email,gender_type,name,password) values ('19900101','[email protected]','남성','tester','q1w2e3r4!')
2024-07-31 13:27:44 - 4 ms | insert into user_tags (user_id,tag) values (1,'기억력_개선')
2024-07-31 13:27:44 - 4 ms | insert into user_tags (user_id,tag) values (1,'피부건강')
2024-07-31 13:27:44 -
2024-07-31 13:28:50 - 4 ms | select uv1_0.id from user_v2 uv1_0 where uv1_0.email='[email protected]' limit 1
2024-07-31 13:28:50 - 4 ms | select uv1_0.id from user_v2 uv1_0 where uv1_0.name='tester2' limit 1
2024-07-31 13:28:50 - 5 ms | insert into user_v2 (birth_date,email,gender_type,name,password) values ('960101','[email protected]','남성','tester2','q1w2e3r4!')
2024-07-31 13:28:50 - 4 ms | insert into user_tags (user_id,tag) values (2,'기억력_개선')
2024-07-31 13:28:50 - 5 ms | insert into user_tags (user_id,tag) values (2,'피부건강')
2024-07-31 13:28:50 -
2024-07-31 13:29:32 - 3 ms | select uv1_0.id from user_v2 uv1_0 where uv1_0.email='[email protected]' limit 1
2024-07-31 13:29:32 -
2024-07-31 13:29:32 - Failure in @ExceptionHandler org.lion.medicapi.v2.exception.ApiExceptionHandler#handleApiException(ApiException)
java.lang.IllegalArgumentException: No enum constant org.springframework.http.HttpStatus.E007
at java.base/java.lang.Enum.valueOf(Enum.java:273)
at org.springframework.http.HttpStatus.valueOf(HttpStatus.java:34)
at org.lion.medicapi.v2.exception.ApiExceptionHandler.handleApiException(ApiExceptionHandler.java:23)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:569)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:432)
at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:74)
at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:175)
at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:80)
at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1357)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1160)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1106)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885)
at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201)
at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389)
at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63)
at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:904)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741)
at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52)
at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190)
at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63)
at java.base/java.lang.Thread.run(Thread.java:840)
2024-07-31 13:29:32 - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.lion.medicapi.v2.exception.ApiException: Duplicate email.] with root cause
org.lion.medicapi.v2.exception.ApiException: Duplicate email.
at org.lion.medicapi.v2.ApiService.signUp(ApiService.java:55)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:569)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354)
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163)
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:379)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184)
at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768)
at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720)
at org.lion.medicapi.v2.ApiService$$SpringCGLIB$$0.signUp(<generated>)
at org.lion.medicapi.v2.ApiController.signUp(ApiController.java:31)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:569)
at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926)