From b45c9f34b1d7d417a71830b431eef6149e398e9e Mon Sep 17 00:00:00 2001 From: haerong22 Date: Tue, 23 Mar 2021 16:50:30 +0900 Subject: [PATCH] rest controller practice : send email(reset user password) --- rest-controller-practice/logs/spring-jpa.log | 1637 +++++++---------- .../logs/spring-jpa.log.2021-03-22.0.gz | Bin 0 -> 17337 bytes .../config/WebMvcConfiguration.java | 2 +- .../mail/entity/MailTemplate.java | 2 - .../user/controller/ApiUserController.java | 11 + .../restcontroller/user/entity/User.java | 4 + .../user/model/UserPasswordResetInput.java | 24 + .../user/repository/UserRepository.java | 2 +- .../user/service/UserService.java | 2 + .../user/service/UserServiceImpl.java | 29 + .../src/main/resources/data.sql | 10 +- 11 files changed, 784 insertions(+), 939 deletions(-) create mode 100644 rest-controller-practice/logs/spring-jpa.log.2021-03-22.0.gz create mode 100644 rest-controller-practice/src/main/java/com/example/restcontroller/user/model/UserPasswordResetInput.java diff --git a/rest-controller-practice/logs/spring-jpa.log b/rest-controller-practice/logs/spring-jpa.log index 2f2c4b6b..16ddfb49 100644 --- a/rest-controller-practice/logs/spring-jpa.log +++ b/rest-controller-practice/logs/spring-jpa.log @@ -1,185 +1,185 @@ -2021-03-22 00:57:21.308 INFO 21892 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 21892 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) -2021-03-22 00:57:21.324 INFO 21892 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default -2021-03-22 00:57:23.316 INFO 21892 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-03-22 00:57:23.726 INFO 21892 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 391 ms. Found 16 JPA repository interfaces. -2021-03-22 00:57:25.007 INFO 21892 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) -2021-03-22 00:57:25.028 INFO 21892 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] -2021-03-22 00:57:25.029 INFO 21892 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-03-22 00:57:25.304 INFO 21892 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext -2021-03-22 00:57:25.305 INFO 21892 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3859 ms -2021-03-22 00:57:25.398 INFO 21892 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... -2021-03-22 00:57:25.641 INFO 21892 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. -2021-03-22 00:57:25.648 INFO 21892 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' -2021-03-22 00:57:25.958 INFO 21892 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] -2021-03-22 00:57:26.084 INFO 21892 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final -2021-03-22 00:57:26.448 INFO 21892 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} -2021-03-22 00:57:26.547 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@7cc2c551 -2021-03-22 00:57:26.547 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@7cc2c551 -2021-03-22 00:57:26.548 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@7cc2c551 -2021-03-22 00:57:26.550 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@37c1cfa -2021-03-22 00:57:26.551 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@537b3b2e -2021-03-22 00:57:26.554 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@221ca495 -2021-03-22 00:57:26.560 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@237b2852 -2021-03-22 00:57:26.560 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@237b2852 -2021-03-22 00:57:26.560 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@237b2852 -2021-03-22 00:57:26.564 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@550c973e -2021-03-22 00:57:26.565 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@550c973e -2021-03-22 00:57:26.566 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@550c973e -2021-03-22 00:57:26.573 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@7e94e331 -2021-03-22 00:57:26.574 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@7e94e331 -2021-03-22 00:57:26.574 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@7e94e331 -2021-03-22 00:57:26.577 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@7b8aebd0 -2021-03-22 00:57:26.578 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@7b8aebd0 -2021-03-22 00:57:26.578 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@7b8aebd0 -2021-03-22 00:57:26.581 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@71567f33 -2021-03-22 00:57:26.582 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@71567f33 -2021-03-22 00:57:26.582 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@71567f33 -2021-03-22 00:57:26.585 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5a7b6b75 -2021-03-22 00:57:26.587 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5a7b6b75 -2021-03-22 00:57:26.588 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@5a7b6b75 -2021-03-22 00:57:26.591 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@2cae5fa7 -2021-03-22 00:57:26.592 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@2cae5fa7 -2021-03-22 00:57:26.593 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@2cae5fa7 -2021-03-22 00:57:26.596 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@660b1a9d -2021-03-22 00:57:26.597 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@660b1a9d -2021-03-22 00:57:26.599 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@6fe04f2a -2021-03-22 00:57:26.599 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@6fe04f2a -2021-03-22 00:57:26.601 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@7523d5a1 -2021-03-22 00:57:26.603 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@7523d5a1 -2021-03-22 00:57:26.605 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@5980fa73 -2021-03-22 00:57:26.607 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@1ae924f1 -2021-03-22 00:57:26.608 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@5f3b84bd -2021-03-22 00:57:26.608 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@5f3b84bd -2021-03-22 00:57:26.609 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@f18b738 -2021-03-22 00:57:26.610 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@f18b738 -2021-03-22 00:57:26.611 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@6fb22ae3 -2021-03-22 00:57:26.612 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@6fb22ae3 -2021-03-22 00:57:26.613 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@5fd8dd66 -2021-03-22 00:57:26.614 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@5fd8dd66 -2021-03-22 00:57:26.615 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@55c50f52 -2021-03-22 00:57:26.615 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@55c50f52 -2021-03-22 00:57:26.618 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@79f5a6ed -2021-03-22 00:57:26.618 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@79f5a6ed -2021-03-22 00:57:26.622 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@120350eb -2021-03-22 00:57:26.622 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@120350eb -2021-03-22 00:57:26.624 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@643ecfef -2021-03-22 00:57:26.624 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@643ecfef -2021-03-22 00:57:26.626 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@19d53ab4 -2021-03-22 00:57:26.627 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@19d53ab4 -2021-03-22 00:57:26.629 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@27bc1d44 -2021-03-22 00:57:26.630 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@27bc1d44 -2021-03-22 00:57:26.632 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@1b409a79 -2021-03-22 00:57:26.632 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@1b409a79 -2021-03-22 00:57:26.636 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@3e0a9b1d -2021-03-22 00:57:26.636 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@3e0a9b1d -2021-03-22 00:57:26.637 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@3e0a9b1d -2021-03-22 00:57:26.639 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@4e3283f6 -2021-03-22 00:57:26.641 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@21516c88 -2021-03-22 00:57:26.641 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@21516c88 -2021-03-22 00:57:26.642 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@21516c88 -2021-03-22 00:57:26.643 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@7604198a -2021-03-22 00:57:26.645 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@464aeb09 -2021-03-22 00:57:26.646 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@52d7ab79 -2021-03-22 00:57:26.646 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@52d7ab79 -2021-03-22 00:57:26.647 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@66b0e207 -2021-03-22 00:57:26.647 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@66b0e207 -2021-03-22 00:57:26.650 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@c0c8f96 -2021-03-22 00:57:26.650 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@c0c8f96 -2021-03-22 00:57:26.654 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@482a58c7 -2021-03-22 00:57:26.656 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@482a58c7 -2021-03-22 00:57:26.659 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@2d4fb0d8 -2021-03-22 00:57:26.659 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@2d4fb0d8 -2021-03-22 00:57:26.660 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@5b332439 -2021-03-22 00:57:26.663 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@1b0e031b -2021-03-22 00:57:26.664 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@1b0e031b -2021-03-22 00:57:26.664 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@1b0e031b -2021-03-22 00:57:26.666 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@8077c97 -2021-03-22 00:57:26.666 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@8077c97 -2021-03-22 00:57:26.667 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@8077c97 -2021-03-22 00:57:26.671 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@4601047 -2021-03-22 00:57:26.673 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@54c11750 -2021-03-22 00:57:26.674 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@799c8758 -2021-03-22 00:57:26.674 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@799c8758 -2021-03-22 00:57:26.675 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@799c8758 -2021-03-22 00:57:26.677 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@582dcd35 -2021-03-22 00:57:26.677 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@582dcd35 -2021-03-22 00:57:26.677 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@582dcd35 -2021-03-22 00:57:26.679 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@55adcf9e -2021-03-22 00:57:26.679 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@58601e7a -2021-03-22 00:57:26.681 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@11399548 -2021-03-22 00:57:26.681 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@11399548 -2021-03-22 00:57:26.682 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@a457c2b -2021-03-22 00:57:26.686 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@184afb78 -2021-03-22 00:57:26.687 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@184afb78 -2021-03-22 00:57:26.690 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@4438938e -2021-03-22 00:57:26.690 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@4438938e -2021-03-22 00:57:26.691 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@91a2543 -2021-03-22 00:57:26.692 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@3af36922 -2021-03-22 00:57:26.695 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@4899799b -2021-03-22 00:57:26.700 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@78065fcd -2021-03-22 00:57:26.700 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@78065fcd -2021-03-22 00:57:26.703 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@19b9f903 -2021-03-22 00:57:26.704 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@10e56da9 -2021-03-22 00:57:26.704 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@28cb86b2 -2021-03-22 00:57:26.704 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@22ae905f -2021-03-22 00:57:26.705 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@748904e8 -2021-03-22 00:57:26.705 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4fbaa7f5 -2021-03-22 00:57:26.705 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@3b3056a6 -2021-03-22 00:57:26.705 DEBUG 21892 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@6d4a05f7 -2021-03-22 00:57:26.853 INFO 21892 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2021-03-22 00:57:27.035 DEBUG 21892 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@13cc31ae] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@5bb7a59] -2021-03-22 00:57:27.456 DEBUG 21892 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType -2021-03-22 00:57:27.458 DEBUG 21892 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus -2021-03-22 00:57:27.712 DEBUG 21892 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@13cc31ae] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@26270b77] -2021-03-22 00:57:28.579 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:29:57.099 INFO 22684 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 22684 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) +2021-03-23 16:29:57.112 INFO 22684 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-23 16:29:58.633 INFO 22684 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-23 16:29:58.959 INFO 22684 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 305 ms. Found 16 JPA repository interfaces. +2021-03-23 16:29:59.990 INFO 22684 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-23 16:30:00.003 INFO 22684 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-23 16:30:00.004 INFO 22684 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-23 16:30:00.168 INFO 22684 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-23 16:30:00.169 INFO 22684 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2945 ms +2021-03-23 16:30:00.242 INFO 22684 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-23 16:30:00.400 INFO 22684 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-23 16:30:00.407 INFO 22684 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-23 16:30:00.608 INFO 22684 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-23 16:30:00.697 INFO 22684 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-23 16:30:00.935 INFO 22684 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-23 16:30:00.988 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@56c0a61e +2021-03-23 16:30:00.989 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@56c0a61e +2021-03-23 16:30:00.990 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@56c0a61e +2021-03-23 16:30:00.991 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@5f6494c0 +2021-03-23 16:30:00.991 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@3a4e524 +2021-03-23 16:30:00.993 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@1cee2e10 +2021-03-23 16:30:00.994 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@19eea77c +2021-03-23 16:30:00.995 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@19eea77c +2021-03-23 16:30:00.996 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@19eea77c +2021-03-23 16:30:00.997 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@69feb4d9 +2021-03-23 16:30:00.998 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@69feb4d9 +2021-03-23 16:30:00.998 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@69feb4d9 +2021-03-23 16:30:00.999 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3ccb12d +2021-03-23 16:30:01.000 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3ccb12d +2021-03-23 16:30:01.000 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@3ccb12d +2021-03-23 16:30:01.002 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@41fc0084 +2021-03-23 16:30:01.002 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@41fc0084 +2021-03-23 16:30:01.002 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@41fc0084 +2021-03-23 16:30:01.004 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4628a02b +2021-03-23 16:30:01.004 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4628a02b +2021-03-23 16:30:01.004 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@4628a02b +2021-03-23 16:30:01.006 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5203c80f +2021-03-23 16:30:01.006 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5203c80f +2021-03-23 16:30:01.006 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@5203c80f +2021-03-23 16:30:01.008 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4cae66a8 +2021-03-23 16:30:01.008 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4cae66a8 +2021-03-23 16:30:01.008 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4cae66a8 +2021-03-23 16:30:01.010 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@3181d4de +2021-03-23 16:30:01.011 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@3181d4de +2021-03-23 16:30:01.012 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@3cf55e0c +2021-03-23 16:30:01.012 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@3cf55e0c +2021-03-23 16:30:01.013 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@3afca2c +2021-03-23 16:30:01.013 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@3afca2c +2021-03-23 16:30:01.014 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@3a209918 +2021-03-23 16:30:01.016 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@532dacf5 +2021-03-23 16:30:01.018 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@2f4d01b6 +2021-03-23 16:30:01.018 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@2f4d01b6 +2021-03-23 16:30:01.019 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@661e279d +2021-03-23 16:30:01.020 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@661e279d +2021-03-23 16:30:01.021 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@32e5af53 +2021-03-23 16:30:01.021 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@32e5af53 +2021-03-23 16:30:01.023 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@27bcb4ad +2021-03-23 16:30:01.023 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@27bcb4ad +2021-03-23 16:30:01.025 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@1e191150 +2021-03-23 16:30:01.026 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@1e191150 +2021-03-23 16:30:01.027 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@aca3c85 +2021-03-23 16:30:01.027 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@aca3c85 +2021-03-23 16:30:01.029 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@69a373fd +2021-03-23 16:30:01.030 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@69a373fd +2021-03-23 16:30:01.032 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@6df11e91 +2021-03-23 16:30:01.033 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@6df11e91 +2021-03-23 16:30:01.034 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@8b41ad +2021-03-23 16:30:01.035 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@8b41ad +2021-03-23 16:30:01.038 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@2bb31455 +2021-03-23 16:30:01.039 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@2bb31455 +2021-03-23 16:30:01.040 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@41a16eb3 +2021-03-23 16:30:01.040 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@41a16eb3 +2021-03-23 16:30:01.042 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@652e345 +2021-03-23 16:30:01.042 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@652e345 +2021-03-23 16:30:01.042 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@652e345 +2021-03-23 16:30:01.044 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@6060146b +2021-03-23 16:30:01.046 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@2dcd0e41 +2021-03-23 16:30:01.046 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@2dcd0e41 +2021-03-23 16:30:01.046 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@2dcd0e41 +2021-03-23 16:30:01.048 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@3a45afd4 +2021-03-23 16:30:01.048 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@2035d65b +2021-03-23 16:30:01.050 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@394fb736 +2021-03-23 16:30:01.051 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@394fb736 +2021-03-23 16:30:01.053 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@13004dd8 +2021-03-23 16:30:01.053 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@13004dd8 +2021-03-23 16:30:01.054 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@314b7945 +2021-03-23 16:30:01.054 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@314b7945 +2021-03-23 16:30:01.056 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@59d6642a +2021-03-23 16:30:01.056 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@59d6642a +2021-03-23 16:30:01.057 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@288728e +2021-03-23 16:30:01.057 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@288728e +2021-03-23 16:30:01.058 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@4c5406b +2021-03-23 16:30:01.060 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@3e52ed5d +2021-03-23 16:30:01.060 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@3e52ed5d +2021-03-23 16:30:01.061 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@3e52ed5d +2021-03-23 16:30:01.062 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@147efd9 +2021-03-23 16:30:01.063 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@147efd9 +2021-03-23 16:30:01.063 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@147efd9 +2021-03-23 16:30:01.064 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@3ef3f661 +2021-03-23 16:30:01.065 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@78479f2b +2021-03-23 16:30:01.066 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@7b377a53 +2021-03-23 16:30:01.067 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@7b377a53 +2021-03-23 16:30:01.067 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@7b377a53 +2021-03-23 16:30:01.068 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@27358a19 +2021-03-23 16:30:01.068 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@27358a19 +2021-03-23 16:30:01.068 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@27358a19 +2021-03-23 16:30:01.069 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@5d5d3a5c +2021-03-23 16:30:01.070 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@4601047 +2021-03-23 16:30:01.072 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@d108406 +2021-03-23 16:30:01.072 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@d108406 +2021-03-23 16:30:01.073 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@6a5dd083 +2021-03-23 16:30:01.075 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@7f5ce33e +2021-03-23 16:30:01.075 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@7f5ce33e +2021-03-23 16:30:01.077 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@66a82a13 +2021-03-23 16:30:01.078 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@66a82a13 +2021-03-23 16:30:01.079 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@46d0f89c +2021-03-23 16:30:01.079 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@5773d271 +2021-03-23 16:30:01.082 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@40dd552c +2021-03-23 16:30:01.085 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@474e34e4 +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@474e34e4 +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@51eb0e84 +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@4ce267cc +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@2eebce87 +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@6ee37ca7 +2021-03-23 16:30:01.086 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@6775c0d1 +2021-03-23 16:30:01.087 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@38f617f4 +2021-03-23 16:30:01.087 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@4899799b +2021-03-23 16:30:01.087 DEBUG 22684 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@3dea226b +2021-03-23 16:30:01.171 INFO 22684 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-23 16:30:01.284 DEBUG 22684 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7e31062c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@595fed99] +2021-03-23 16:30:01.543 DEBUG 22684 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-23 16:30:01.545 DEBUG 22684 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-23 16:30:01.742 DEBUG 22684 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7e31062c] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@2beee3e8] +2021-03-23 16:30:02.414 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board CASCADE -2021-03-22 00:57:28.582 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.417 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_bookmark CASCADE -2021-03-22 00:57:28.582 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.417 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_comment CASCADE -2021-03-22 00:57:28.583 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.417 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_hits CASCADE -2021-03-22 00:57:28.583 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.417 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_like CASCADE -2021-03-22 00:57:28.583 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.417 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_report CASCADE -2021-03-22 00:57:28.583 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_scrap CASCADE -2021-03-22 00:57:28.583 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists board_type CASCADE -2021-03-22 00:57:28.584 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists logs CASCADE -2021-03-22 00:57:28.585 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists mail_template CASCADE -2021-03-22 00:57:28.585 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists notice CASCADE -2021-03-22 00:57:28.585 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.418 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists notice_like CASCADE -2021-03-22 00:57:28.587 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.419 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists user CASCADE -2021-03-22 00:57:28.588 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.419 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists user_interest CASCADE -2021-03-22 00:57:28.588 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.419 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists user_login_history CASCADE -2021-03-22 00:57:28.589 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.419 DEBUG 22684 --- [main] org.hibernate.SQL : drop table if exists user_point CASCADE -2021-03-22 00:57:28.592 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.422 DEBUG 22684 --- [main] org.hibernate.SQL : create table board ( id bigint generated by default as identity, @@ -194,7 +194,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.611 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.435 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_bookmark ( id bigint generated by default as identity, @@ -206,7 +206,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.611 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.436 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_comment ( id bigint generated by default as identity, @@ -216,7 +216,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.612 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.437 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_hits ( id bigint generated by default as identity, @@ -225,7 +225,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.614 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.437 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_like ( id bigint generated by default as identity, @@ -234,7 +234,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.615 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.439 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_report ( id bigint generated by default as identity, @@ -250,7 +250,7 @@ user_name varchar(255), primary key (id) ) -2021-03-22 00:57:28.616 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.440 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_scrap ( id bigint generated by default as identity, @@ -264,7 +264,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.621 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.441 DEBUG 22684 --- [main] org.hibernate.SQL : create table board_type ( id bigint generated by default as identity, @@ -274,7 +274,7 @@ using_yn boolean not null, primary key (id) ) -2021-03-22 00:57:28.624 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.442 DEBUG 22684 --- [main] org.hibernate.SQL : create table logs ( id bigint generated by default as identity, @@ -282,7 +282,7 @@ text clob, primary key (id) ) -2021-03-22 00:57:28.627 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.443 DEBUG 22684 --- [main] org.hibernate.SQL : create table mail_template ( id bigint generated by default as identity, @@ -294,7 +294,7 @@ title varchar(255), primary key (id) ) -2021-03-22 00:57:28.630 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.444 DEBUG 22684 --- [main] org.hibernate.SQL : create table notice ( id bigint generated by default as identity, @@ -309,7 +309,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.631 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.445 DEBUG 22684 --- [main] org.hibernate.SQL : create table notice_like ( id bigint generated by default as identity, @@ -317,13 +317,15 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.648 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.448 DEBUG 22684 --- [main] org.hibernate.SQL : create table user ( id bigint generated by default as identity, email varchar(255) not null, lock_yn boolean, password varchar(255) not null, + password_reset_key varchar(255), + password_reset_yn boolean not null, phone varchar(255) not null, reg_date timestamp, status varchar(255), @@ -331,7 +333,7 @@ user_name varchar(255) not null, primary key (id) ) -2021-03-22 00:57:28.649 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.449 DEBUG 22684 --- [main] org.hibernate.SQL : create table user_interest ( id bigint generated by default as identity, @@ -340,7 +342,7 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.652 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.450 DEBUG 22684 --- [main] org.hibernate.SQL : create table user_login_history ( id bigint generated by default as identity, @@ -351,7 +353,7 @@ user_name varchar(255), primary key (id) ) -2021-03-22 00:57:28.656 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.452 DEBUG 22684 --- [main] org.hibernate.SQL : create table user_point ( id bigint generated by default as identity, @@ -361,300 +363,301 @@ user_id bigint, primary key (id) ) -2021-03-22 00:57:28.657 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.453 DEBUG 22684 --- [main] org.hibernate.SQL : alter table user add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) -2021-03-22 00:57:28.662 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.458 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board add constraint FK59iw5qt320s9l10vbxey9as5p foreign key (board_type_id) references board_type -2021-03-22 00:57:28.681 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.470 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board add constraint FKfyf1fchnby6hndhlfaidier1r foreign key (user_id) references user -2021-03-22 00:57:28.683 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.471 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_bookmark add constraint FK_BOARD_BOOKMARK_USER_ID foreign key (user_id) references user -2021-03-22 00:57:28.684 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.473 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_BOARD_ID foreign key (board_id) references board -2021-03-22 00:57:28.689 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.474 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_USER_ID foreign key (user_id) references user -2021-03-22 00:57:28.691 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.476 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_hits add constraint FK8ptvjkodqmonm762uo9v8ocha foreign key (board_id) references board -2021-03-22 00:57:28.694 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.477 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_hits add constraint FKjkkt5o4uyvoo26g31v71pww4w foreign key (user_id) references user -2021-03-22 00:57:28.696 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.479 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_like add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq foreign key (board_id) references board -2021-03-22 00:57:28.698 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.481 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_like add constraint FKpf406vodal6lejcg4fkwcjr2o foreign key (user_id) references user -2021-03-22 00:57:28.699 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.483 DEBUG 22684 --- [main] org.hibernate.SQL : alter table board_scrap add constraint FK_BOARD_SCRAP_USER_ID foreign key (user_id) references user -2021-03-22 00:57:28.702 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.485 DEBUG 22684 --- [main] org.hibernate.SQL : alter table notice add constraint FKcvf4mh5se36inrxn7xlh2brfv foreign key (user_id) references user -2021-03-22 00:57:28.705 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.487 DEBUG 22684 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKm2krt4h5dcpydbb4tlvxyr27 foreign key (notice_id) references notice -2021-03-22 00:57:28.709 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.488 DEBUG 22684 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKnplmervi6gx6dqj4vpnq7jn6g foreign key (user_id) references user -2021-03-22 00:57:28.710 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.490 DEBUG 22684 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_INTEREST_USER_ID foreign key (interest_user_id) references user -2021-03-22 00:57:28.713 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.492 DEBUG 22684 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_USER_ID foreign key (user_id) references user -2021-03-22 00:57:28.714 DEBUG 21892 --- [main] org.hibernate.SQL : +2021-03-23 16:30:02.494 DEBUG 22684 --- [main] org.hibernate.SQL : alter table user_point add constraint FK_USER_POINT_USER_ID foreign key (user_id) references user -2021-03-22 00:57:28.724 INFO 21892 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-03-22 00:57:28.740 TRACE 21892 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@26270b77] for TypeConfiguration -2021-03-22 00:57:28.744 INFO 21892 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-03-22 00:57:30.699 WARN 21892 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-03-22 00:57:31.261 INFO 21892 --- [main] .s.s.UserDetailsServiceAutoConfiguration : +2021-03-23 16:30:02.499 INFO 22684 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-23 16:30:02.507 TRACE 22684 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2beee3e8] for TypeConfiguration +2021-03-23 16:30:02.509 INFO 22684 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-23 16:30:04.150 WARN 22684 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-03-23 16:30:04.510 INFO 22684 --- [main] .s.s.UserDetailsServiceAutoConfiguration : -Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 +Using generated security password: 4add762d-ff99-474d-8d47-c940b8af02fe -2021-03-22 00:57:31.422 INFO 21892 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6fc1a1d5, org.springframework.security.web.context.SecurityContextPersistenceFilter@2b98c310, org.springframework.security.web.header.HeaderWriterFilter@5aec151b, org.springframework.security.web.authentication.logout.LogoutFilter@54e3cba2, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@26361572, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@267a8777, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4f8641d1, org.springframework.security.web.session.SessionManagementFilter@445f6aa7, org.springframework.security.web.access.ExceptionTranslationFilter@5d200dce, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@32182bf8] -2021-03-22 00:57:31.719 INFO 21892 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' -2021-03-22 00:57:32.210 INFO 21892 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' -2021-03-22 00:57:32.228 INFO 21892 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 11.915 seconds (JVM running for 14.711) -2021-03-22 01:04:47.497 INFO 21192 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 21192 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) -2021-03-22 01:04:47.505 INFO 21192 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default -2021-03-22 01:04:49.027 INFO 21192 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-03-22 01:04:49.344 INFO 21192 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 303 ms. Found 16 JPA repository interfaces. -2021-03-22 01:04:50.427 INFO 21192 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) -2021-03-22 01:04:50.442 INFO 21192 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] -2021-03-22 01:04:50.442 INFO 21192 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-03-22 01:04:50.678 INFO 21192 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext -2021-03-22 01:04:50.679 INFO 21192 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3096 ms -2021-03-22 01:04:50.764 INFO 21192 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... -2021-03-22 01:04:50.927 INFO 21192 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. -2021-03-22 01:04:50.937 INFO 21192 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' -2021-03-22 01:04:51.212 INFO 21192 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] -2021-03-22 01:04:51.310 INFO 21192 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final -2021-03-22 01:04:51.601 INFO 21192 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} -2021-03-22 01:04:51.672 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@3dc39459 -2021-03-22 01:04:51.673 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@3dc39459 -2021-03-22 01:04:51.674 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@3dc39459 -2021-03-22 01:04:51.675 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@383cdd4d -2021-03-22 01:04:51.676 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@685d7ba5 -2021-03-22 01:04:51.678 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@26d0ece6 -2021-03-22 01:04:51.686 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@5dcf0772 -2021-03-22 01:04:51.687 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@5dcf0772 -2021-03-22 01:04:51.687 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@5dcf0772 -2021-03-22 01:04:51.690 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@5e67a490 -2021-03-22 01:04:51.690 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@5e67a490 -2021-03-22 01:04:51.690 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@5e67a490 -2021-03-22 01:04:51.693 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@5d66ae3a -2021-03-22 01:04:51.694 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@5d66ae3a -2021-03-22 01:04:51.694 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@5d66ae3a -2021-03-22 01:04:51.697 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@6682e6a5 -2021-03-22 01:04:51.698 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@6682e6a5 -2021-03-22 01:04:51.701 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@6682e6a5 -2021-03-22 01:04:51.705 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@37c1cfa -2021-03-22 01:04:51.705 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@37c1cfa -2021-03-22 01:04:51.706 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@37c1cfa -2021-03-22 01:04:51.708 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@28b458e6 -2021-03-22 01:04:51.708 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@28b458e6 -2021-03-22 01:04:51.708 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@28b458e6 -2021-03-22 01:04:51.710 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@401788d5 -2021-03-22 01:04:51.711 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@401788d5 -2021-03-22 01:04:51.711 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@401788d5 -2021-03-22 01:04:51.713 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@2b01c689 -2021-03-22 01:04:51.713 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@2b01c689 -2021-03-22 01:04:51.720 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@439f2d87 -2021-03-22 01:04:51.721 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@439f2d87 -2021-03-22 01:04:51.724 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@60b616c8 -2021-03-22 01:04:51.724 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@60b616c8 -2021-03-22 01:04:51.725 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@7b8aebd0 -2021-03-22 01:04:51.727 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@639c7f9c -2021-03-22 01:04:51.729 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@4c04216f -2021-03-22 01:04:51.730 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@4c04216f -2021-03-22 01:04:51.733 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@39f42d0e -2021-03-22 01:04:51.735 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@39f42d0e -2021-03-22 01:04:51.739 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@da09250 -2021-03-22 01:04:51.739 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@da09250 -2021-03-22 01:04:51.741 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@112c2930 -2021-03-22 01:04:51.741 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@112c2930 -2021-03-22 01:04:51.744 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@beabd6b -2021-03-22 01:04:51.745 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@beabd6b -2021-03-22 01:04:51.745 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@5980fa73 -2021-03-22 01:04:51.746 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@5980fa73 -2021-03-22 01:04:51.748 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@4357524b -2021-03-22 01:04:51.748 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@4357524b -2021-03-22 01:04:51.753 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@2fbd390 -2021-03-22 01:04:51.754 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@2fbd390 -2021-03-22 01:04:51.758 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6735f210 -2021-03-22 01:04:51.758 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6735f210 -2021-03-22 01:04:51.761 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@7de35070 -2021-03-22 01:04:51.761 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@7de35070 -2021-03-22 01:04:51.762 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@48dff674 -2021-03-22 01:04:51.763 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@48dff674 -2021-03-22 01:04:51.765 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@2bb31455 -2021-03-22 01:04:51.765 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@2bb31455 -2021-03-22 01:04:51.765 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@2bb31455 -2021-03-22 01:04:51.769 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@bb8ead8 -2021-03-22 01:04:51.772 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@53cb0bcb -2021-03-22 01:04:51.772 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@53cb0bcb -2021-03-22 01:04:51.772 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@53cb0bcb -2021-03-22 01:04:51.773 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@7574d4ad -2021-03-22 01:04:51.775 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@7a55fb81 -2021-03-22 01:04:51.776 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@7272ee51 -2021-03-22 01:04:51.776 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@7272ee51 -2021-03-22 01:04:51.777 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@762a10b6 -2021-03-22 01:04:51.777 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@762a10b6 -2021-03-22 01:04:51.778 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@240a2619 -2021-03-22 01:04:51.779 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@240a2619 -2021-03-22 01:04:51.780 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@3070f3e6 -2021-03-22 01:04:51.781 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@3070f3e6 -2021-03-22 01:04:51.786 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@4fc6e776 -2021-03-22 01:04:51.786 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@4fc6e776 -2021-03-22 01:04:51.788 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@7604198a -2021-03-22 01:04:51.791 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@365cef67 -2021-03-22 01:04:51.792 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@365cef67 -2021-03-22 01:04:51.792 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@365cef67 -2021-03-22 01:04:51.793 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@b7d2d51 -2021-03-22 01:04:51.794 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@b7d2d51 -2021-03-22 01:04:51.794 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@b7d2d51 -2021-03-22 01:04:51.795 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@5d601832 -2021-03-22 01:04:51.796 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@c0c8f96 -2021-03-22 01:04:51.797 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@482a58c7 -2021-03-22 01:04:51.797 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@482a58c7 -2021-03-22 01:04:51.797 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@482a58c7 -2021-03-22 01:04:51.802 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@2d4fb0d8 -2021-03-22 01:04:51.803 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@2d4fb0d8 -2021-03-22 01:04:51.803 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@2d4fb0d8 -2021-03-22 01:04:51.804 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@5b332439 -2021-03-22 01:04:51.805 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@65859b44 -2021-03-22 01:04:51.807 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@4e5c8ef3 -2021-03-22 01:04:51.808 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@4e5c8ef3 -2021-03-22 01:04:51.810 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@22865072 -2021-03-22 01:04:51.813 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@54c11750 -2021-03-22 01:04:51.813 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@54c11750 -2021-03-22 01:04:51.818 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@6a5dd083 -2021-03-22 01:04:51.819 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@6a5dd083 -2021-03-22 01:04:51.820 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@582dcd35 -2021-03-22 01:04:51.822 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@55adcf9e -2021-03-22 01:04:51.826 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@66a82a13 -2021-03-22 01:04:51.831 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@184afb78 -2021-03-22 01:04:51.832 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@184afb78 -2021-03-22 01:04:51.835 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@40dd552c -2021-03-22 01:04:51.836 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@33f4c769 -2021-03-22 01:04:51.837 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@4ebd6fd6 -2021-03-22 01:04:51.837 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@5e5a8718 -2021-03-22 01:04:51.837 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@7404ddca -2021-03-22 01:04:51.837 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@615e83ac -2021-03-22 01:04:51.838 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@4438938e -2021-03-22 01:04:51.838 DEBUG 21192 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@4e50ae56 -2021-03-22 01:04:51.971 INFO 21192 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2021-03-22 01:04:52.109 DEBUG 21192 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@628ba266] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@1231a1be] -2021-03-22 01:04:52.486 DEBUG 21192 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType -2021-03-22 01:04:52.488 DEBUG 21192 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus -2021-03-22 01:04:52.770 DEBUG 21192 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@628ba266] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@79b8ecb] -2021-03-22 01:04:53.729 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:30:04.646 INFO 22684 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@1db565f2, org.springframework.security.web.context.SecurityContextPersistenceFilter@40ed4674, org.springframework.security.web.header.HeaderWriterFilter@3ecc9baa, org.springframework.security.web.authentication.logout.LogoutFilter@4fae4c3b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@377cc0f8, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@535aa7c7, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1c0a143, org.springframework.security.web.session.SessionManagementFilter@6b7e4db6, org.springframework.security.web.access.ExceptionTranslationFilter@294ab038, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3df4cd96] +2021-03-23 16:30:04.905 INFO 22684 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-23 16:30:05.234 INFO 22684 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' +2021-03-23 16:30:05.307 INFO 22684 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-23 16:30:05.327 INFO 22684 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 9.104 seconds (JVM running for 11.577) +2021-03-23 16:32:53.758 INFO 8572 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 8572 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) +2021-03-23 16:32:53.767 INFO 8572 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-23 16:32:55.897 INFO 8572 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-23 16:32:56.239 INFO 8572 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 329 ms. Found 16 JPA repository interfaces. +2021-03-23 16:32:57.643 INFO 8572 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-23 16:32:57.658 INFO 8572 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-23 16:32:57.659 INFO 8572 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-23 16:32:58.015 INFO 8572 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-23 16:32:58.017 INFO 8572 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 4108 ms +2021-03-23 16:32:58.102 INFO 8572 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-23 16:32:58.286 INFO 8572 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-23 16:32:58.295 INFO 8572 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-23 16:32:58.585 INFO 8572 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-23 16:32:58.690 INFO 8572 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-23 16:32:58.991 INFO 8572 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-23 16:32:59.040 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@421ead7e +2021-03-23 16:32:59.041 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@421ead7e +2021-03-23 16:32:59.041 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@421ead7e +2021-03-23 16:32:59.042 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@6826b70f +2021-03-23 16:32:59.043 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@5e67a490 +2021-03-23 16:32:59.044 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@7f4e5a39 +2021-03-23 16:32:59.046 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@6682e6a5 +2021-03-23 16:32:59.046 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@6682e6a5 +2021-03-23 16:32:59.046 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@6682e6a5 +2021-03-23 16:32:59.047 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@37c1cfa +2021-03-23 16:32:59.049 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@37c1cfa +2021-03-23 16:32:59.050 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@37c1cfa +2021-03-23 16:32:59.053 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@28b458e6 +2021-03-23 16:32:59.053 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@28b458e6 +2021-03-23 16:32:59.053 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@28b458e6 +2021-03-23 16:32:59.055 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@401788d5 +2021-03-23 16:32:59.055 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@401788d5 +2021-03-23 16:32:59.055 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@401788d5 +2021-03-23 16:32:59.057 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@2b01c689 +2021-03-23 16:32:59.057 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@2b01c689 +2021-03-23 16:32:59.057 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@2b01c689 +2021-03-23 16:32:59.058 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@439f2d87 +2021-03-23 16:32:59.058 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@439f2d87 +2021-03-23 16:32:59.059 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@439f2d87 +2021-03-23 16:32:59.060 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@60b616c8 +2021-03-23 16:32:59.060 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@60b616c8 +2021-03-23 16:32:59.060 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@60b616c8 +2021-03-23 16:32:59.061 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@4f64d9cb +2021-03-23 16:32:59.061 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@4f64d9cb +2021-03-23 16:32:59.062 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@ee96866 +2021-03-23 16:32:59.062 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@ee96866 +2021-03-23 16:32:59.063 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@3855d9b2 +2021-03-23 16:32:59.063 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@3855d9b2 +2021-03-23 16:32:59.064 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@2cae5fa7 +2021-03-23 16:32:59.066 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@da09250 +2021-03-23 16:32:59.069 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@112c2930 +2021-03-23 16:32:59.069 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@112c2930 +2021-03-23 16:32:59.071 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@beabd6b +2021-03-23 16:32:59.071 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@beabd6b +2021-03-23 16:32:59.072 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@5980fa73 +2021-03-23 16:32:59.072 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@5980fa73 +2021-03-23 16:32:59.074 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@4357524b +2021-03-23 16:32:59.074 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@4357524b +2021-03-23 16:32:59.075 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@2fbd390 +2021-03-23 16:32:59.075 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@2fbd390 +2021-03-23 16:32:59.076 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@45eab322 +2021-03-23 16:32:59.076 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@45eab322 +2021-03-23 16:32:59.077 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@19ae36f4 +2021-03-23 16:32:59.077 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@19ae36f4 +2021-03-23 16:32:59.079 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@1002d192 +2021-03-23 16:32:59.079 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@1002d192 +2021-03-23 16:32:59.082 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@541d4d9f +2021-03-23 16:32:59.083 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@541d4d9f +2021-03-23 16:32:59.086 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@3c16528d +2021-03-23 16:32:59.086 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@3c16528d +2021-03-23 16:32:59.088 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@677cb96e +2021-03-23 16:32:59.089 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@677cb96e +2021-03-23 16:32:59.090 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@7574d4ad +2021-03-23 16:32:59.090 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@7574d4ad +2021-03-23 16:32:59.090 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@7574d4ad +2021-03-23 16:32:59.092 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@33627576 +2021-03-23 16:32:59.093 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@7272ee51 +2021-03-23 16:32:59.093 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@7272ee51 +2021-03-23 16:32:59.093 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@7272ee51 +2021-03-23 16:32:59.095 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@762a10b6 +2021-03-23 16:32:59.095 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@240a2619 +2021-03-23 16:32:59.097 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@3070f3e6 +2021-03-23 16:32:59.097 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@3070f3e6 +2021-03-23 16:32:59.101 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@4fc6e776 +2021-03-23 16:32:59.102 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@4fc6e776 +2021-03-23 16:32:59.103 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@32da97fd +2021-03-23 16:32:59.103 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@32da97fd +2021-03-23 16:32:59.105 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@365cef67 +2021-03-23 16:32:59.105 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@365cef67 +2021-03-23 16:32:59.106 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@b7d2d51 +2021-03-23 16:32:59.106 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@b7d2d51 +2021-03-23 16:32:59.107 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@66b0e207 +2021-03-23 16:32:59.109 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@6a96d639 +2021-03-23 16:32:59.109 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@6a96d639 +2021-03-23 16:32:59.109 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@6a96d639 +2021-03-23 16:32:59.110 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@1e120628 +2021-03-23 16:32:59.111 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@1e120628 +2021-03-23 16:32:59.111 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@1e120628 +2021-03-23 16:32:59.113 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@baa9ce4 +2021-03-23 16:32:59.113 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@2755617b +2021-03-23 16:32:59.116 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@1b0e031b +2021-03-23 16:32:59.117 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@1b0e031b +2021-03-23 16:32:59.117 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@1b0e031b +2021-03-23 16:32:59.121 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@8077c97 +2021-03-23 16:32:59.121 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@8077c97 +2021-03-23 16:32:59.121 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@8077c97 +2021-03-23 16:32:59.123 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@6e0d16a4 +2021-03-23 16:32:59.124 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@25e8e59 +2021-03-23 16:32:59.127 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@799c8758 +2021-03-23 16:32:59.127 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@799c8758 +2021-03-23 16:32:59.128 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@77663cd7 +2021-03-23 16:32:59.130 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@638afcaa +2021-03-23 16:32:59.130 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@638afcaa +2021-03-23 16:32:59.134 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@675ec28b +2021-03-23 16:32:59.134 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@675ec28b +2021-03-23 16:32:59.135 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@570b2057 +2021-03-23 16:32:59.136 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@59f45950 +2021-03-23 16:32:59.138 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@33f4c769 +2021-03-23 16:32:59.141 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@7e2c6702 +2021-03-23 16:32:59.141 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@7e2c6702 +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@4ce267cc +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@2eebce87 +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@6ee37ca7 +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@6775c0d1 +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@38f617f4 +2021-03-23 16:32:59.142 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@4899799b +2021-03-23 16:32:59.143 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@3dea226b +2021-03-23 16:32:59.143 DEBUG 8572 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@74500e4f +2021-03-23 16:32:59.269 INFO 8572 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-23 16:32:59.420 DEBUG 8572 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@595fed99] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@7d522180] +2021-03-23 16:32:59.770 DEBUG 8572 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-23 16:32:59.772 DEBUG 8572 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-23 16:33:00.069 DEBUG 8572 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@595fed99] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@732d078d] +2021-03-23 16:33:00.963 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board CASCADE -2021-03-22 01:04:53.736 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.971 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_bookmark CASCADE -2021-03-22 01:04:53.737 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.972 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_comment CASCADE -2021-03-22 01:04:53.738 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.972 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_hits CASCADE -2021-03-22 01:04:53.738 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.972 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_like CASCADE -2021-03-22 01:04:53.738 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.973 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_report CASCADE -2021-03-22 01:04:53.739 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.973 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_scrap CASCADE -2021-03-22 01:04:53.739 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.973 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists board_type CASCADE -2021-03-22 01:04:53.739 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.973 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists logs CASCADE -2021-03-22 01:04:53.739 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.973 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists mail_template CASCADE -2021-03-22 01:04:53.739 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.974 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists notice CASCADE -2021-03-22 01:04:53.740 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.974 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists notice_like CASCADE -2021-03-22 01:04:53.740 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.974 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists user CASCADE -2021-03-22 01:04:53.740 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.975 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists user_interest CASCADE -2021-03-22 01:04:53.740 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.975 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists user_login_history CASCADE -2021-03-22 01:04:53.740 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.975 DEBUG 8572 --- [main] org.hibernate.SQL : drop table if exists user_point CASCADE -2021-03-22 01:04:53.744 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:00.980 DEBUG 8572 --- [main] org.hibernate.SQL : create table board ( id bigint generated by default as identity, @@ -669,7 +672,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.761 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.006 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_bookmark ( id bigint generated by default as identity, @@ -681,7 +684,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.764 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.007 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_comment ( id bigint generated by default as identity, @@ -691,7 +694,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.767 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.008 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_hits ( id bigint generated by default as identity, @@ -700,7 +703,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.768 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.009 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_like ( id bigint generated by default as identity, @@ -709,7 +712,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.770 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.011 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_report ( id bigint generated by default as identity, @@ -725,7 +728,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_name varchar(255), primary key (id) ) -2021-03-22 01:04:53.771 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.012 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_scrap ( id bigint generated by default as identity, @@ -739,7 +742,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.772 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.014 DEBUG 8572 --- [main] org.hibernate.SQL : create table board_type ( id bigint generated by default as identity, @@ -749,7 +752,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 using_yn boolean not null, primary key (id) ) -2021-03-22 01:04:53.773 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.018 DEBUG 8572 --- [main] org.hibernate.SQL : create table logs ( id bigint generated by default as identity, @@ -757,7 +760,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 text clob, primary key (id) ) -2021-03-22 01:04:53.776 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.019 DEBUG 8572 --- [main] org.hibernate.SQL : create table mail_template ( id bigint generated by default as identity, @@ -769,7 +772,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 title varchar(255), primary key (id) ) -2021-03-22 01:04:53.776 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.020 DEBUG 8572 --- [main] org.hibernate.SQL : create table notice ( id bigint generated by default as identity, @@ -784,7 +787,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.778 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.022 DEBUG 8572 --- [main] org.hibernate.SQL : create table notice_like ( id bigint generated by default as identity, @@ -792,13 +795,15 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.786 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.026 DEBUG 8572 --- [main] org.hibernate.SQL : create table user ( id bigint generated by default as identity, email varchar(255) not null, lock_yn boolean, password varchar(255) not null, + password_reset_key varchar(255), + password_reset_yn boolean not null, phone varchar(255) not null, reg_date timestamp, status varchar(255), @@ -806,7 +811,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_name varchar(255) not null, primary key (id) ) -2021-03-22 01:04:53.787 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.027 DEBUG 8572 --- [main] org.hibernate.SQL : create table user_interest ( id bigint generated by default as identity, @@ -815,7 +820,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.789 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.028 DEBUG 8572 --- [main] org.hibernate.SQL : create table user_login_history ( id bigint generated by default as identity, @@ -826,7 +831,7 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_name varchar(255), primary key (id) ) -2021-03-22 01:04:53.790 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.030 DEBUG 8572 --- [main] org.hibernate.SQL : create table user_point ( id bigint generated by default as identity, @@ -836,415 +841,310 @@ Using generated security password: 526da3bc-22ff-4dcc-bc2b-f5839ca97f85 user_id bigint, primary key (id) ) -2021-03-22 01:04:53.791 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.033 DEBUG 8572 --- [main] org.hibernate.SQL : alter table user add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) -2021-03-22 01:04:53.794 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.042 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board add constraint FK59iw5qt320s9l10vbxey9as5p foreign key (board_type_id) references board_type -2021-03-22 01:04:53.807 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.060 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board add constraint FKfyf1fchnby6hndhlfaidier1r foreign key (user_id) references user -2021-03-22 01:04:53.810 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.062 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_bookmark add constraint FK_BOARD_BOOKMARK_USER_ID foreign key (user_id) references user -2021-03-22 01:04:53.811 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.067 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_BOARD_ID foreign key (board_id) references board -2021-03-22 01:04:53.812 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.070 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_USER_ID foreign key (user_id) references user -2021-03-22 01:04:53.814 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.072 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_hits add constraint FK8ptvjkodqmonm762uo9v8ocha foreign key (board_id) references board -2021-03-22 01:04:53.818 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.076 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_hits add constraint FKjkkt5o4uyvoo26g31v71pww4w foreign key (user_id) references user -2021-03-22 01:04:53.820 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.078 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_like add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq foreign key (board_id) references board -2021-03-22 01:04:53.822 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.082 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_like add constraint FKpf406vodal6lejcg4fkwcjr2o foreign key (user_id) references user -2021-03-22 01:04:53.824 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.089 DEBUG 8572 --- [main] org.hibernate.SQL : alter table board_scrap add constraint FK_BOARD_SCRAP_USER_ID foreign key (user_id) references user -2021-03-22 01:04:53.826 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.092 DEBUG 8572 --- [main] org.hibernate.SQL : alter table notice add constraint FKcvf4mh5se36inrxn7xlh2brfv foreign key (user_id) references user -2021-03-22 01:04:53.830 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.095 DEBUG 8572 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKm2krt4h5dcpydbb4tlvxyr27 foreign key (notice_id) references notice -2021-03-22 01:04:53.835 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.102 DEBUG 8572 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKnplmervi6gx6dqj4vpnq7jn6g foreign key (user_id) references user -2021-03-22 01:04:53.838 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.106 DEBUG 8572 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_INTEREST_USER_ID foreign key (interest_user_id) references user -2021-03-22 01:04:53.839 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.109 DEBUG 8572 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_USER_ID foreign key (user_id) references user -2021-03-22 01:04:53.842 DEBUG 21192 --- [main] org.hibernate.SQL : +2021-03-23 16:33:01.112 DEBUG 8572 --- [main] org.hibernate.SQL : alter table user_point add constraint FK_USER_POINT_USER_ID foreign key (user_id) references user -2021-03-22 01:04:53.847 INFO 21192 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-03-22 01:04:53.860 TRACE 21192 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@79b8ecb] for TypeConfiguration -2021-03-22 01:04:53.866 INFO 21192 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-03-22 01:04:55.603 WARN 21192 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-03-22 01:04:56.106 INFO 21192 --- [main] .s.s.UserDetailsServiceAutoConfiguration : +2021-03-23 16:33:01.128 INFO 8572 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-23 16:33:01.152 TRACE 8572 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@732d078d] for TypeConfiguration +2021-03-23 16:33:01.157 INFO 8572 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-23 16:33:03.202 WARN 8572 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-03-23 16:33:03.828 INFO 8572 --- [main] .s.s.UserDetailsServiceAutoConfiguration : -Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 +Using generated security password: a25ad609-1819-4aa4-a00f-46792df540b8 -2021-03-22 01:04:56.252 INFO 21192 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@65293ca5, org.springframework.security.web.context.SecurityContextPersistenceFilter@128d397c, org.springframework.security.web.header.HeaderWriterFilter@1196537d, org.springframework.security.web.authentication.logout.LogoutFilter@22e253c7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@395abe85, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@13e5c53c, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6d70e68b, org.springframework.security.web.session.SessionManagementFilter@5318731f, org.springframework.security.web.access.ExceptionTranslationFilter@255b84a9, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@37823482] -2021-03-22 01:04:56.553 INFO 21192 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' -2021-03-22 01:04:56.912 INFO 21192 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' -2021-03-22 01:04:56.992 INFO 21192 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' -2021-03-22 01:04:57.005 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:04:57.007 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 01:04:57.008 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:04:57.013 INFO 21192 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 10.347 seconds (JVM running for 13.917) -2021-03-22 01:04:57.024 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:04:57.025 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 01:04:57.025 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:04:57.086 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - select - logs0_.id as id1_8_, - logs0_.reg_date as reg_date2_8_, - logs0_.text as text3_8_ - from - logs logs0_ -2021-03-22 01:04:57.096 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_8_] : [BIGINT]) - [1] -2021-03-22 01:04:57.111 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date2_8_] : [TIMESTAMP]) - [2021-03-22T01:04:53.995145] -2021-03-22 01:04:57.114 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([text3_8_] : [CLOB]) - [로그1] -2021-03-22 01:04:57.118 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_8_] : [BIGINT]) - [2] -2021-03-22 01:04:57.118 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date2_8_] : [TIMESTAMP]) - [2021-03-22T01:04:53.995145] -2021-03-22 01:04:57.118 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([text3_8_] : [CLOB]) - [로그2] -2021-03-22 01:04:57.118 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_8_] : [BIGINT]) - [3] -2021-03-22 01:04:57.119 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date2_8_] : [TIMESTAMP]) - [2021-03-22T01:04:53.995145] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([text3_8_] : [CLOB]) - [로그3] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_8_] : [BIGINT]) - [4] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date2_8_] : [TIMESTAMP]) - [2021-03-22T01:04:53.995145] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([text3_8_] : [CLOB]) - [로그4] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_8_] : [BIGINT]) - [5] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date2_8_] : [TIMESTAMP]) - [2021-03-22T01:04:53.995145] -2021-03-22 01:04:57.120 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([text3_8_] : [CLOB]) - [로그5] -2021-03-22 01:04:57.164 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:04:57.164 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 01:04:57.164 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:04:57.188 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - delete - from - logs - where - id=? -2021-03-22 01:04:57.190 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [1] -2021-03-22 01:04:57.192 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - delete - from - logs - where - id=? -2021-03-22 01:04:57.193 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [2] -2021-03-22 01:04:57.193 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - delete - from - logs - where - id=? -2021-03-22 01:04:57.193 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [3] -2021-03-22 01:04:57.193 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - delete - from - logs - where - id=? -2021-03-22 01:04:57.194 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [4] -2021-03-22 01:04:57.194 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - delete - from - logs - where - id=? -2021-03-22 01:04:57.194 TRACE 21192 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [5] -2021-03-22 01:05:57.202 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:05:57.202 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 01:05:57.202 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:05:57.202 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:05:57.202 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 01:05:57.203 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:05:57.203 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - select - logs0_.id as id1_8_, - logs0_.reg_date as reg_date2_8_, - logs0_.text as text3_8_ - from - logs logs0_ -2021-03-22 01:05:57.204 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:05:57.204 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 01:05:57.204 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:06:57.206 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:06:57.207 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 01:06:57.208 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:06:57.209 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:06:57.209 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 01:06:57.209 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:06:57.210 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - select - logs0_.id as id1_8_, - logs0_.reg_date as reg_date2_8_, - logs0_.text as text3_8_ - from - logs logs0_ -2021-03-22 01:06:57.211 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:06:57.211 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 01:06:57.211 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:07:57.213 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:07:57.214 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 01:07:57.214 INFO 21192 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 01:07:57.217 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:07:57.217 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 01:07:57.217 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:07:57.218 DEBUG 21192 --- [scheduling-1] org.hibernate.SQL : - select - logs0_.id as id1_8_, - logs0_.reg_date as reg_date2_8_, - logs0_.text as text3_8_ - from - logs logs0_ -2021-03-22 01:07:57.218 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 01:07:57.218 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 01:07:57.219 INFO 21192 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:07:13.858 INFO 25300 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 25300 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) -2021-03-22 02:07:13.867 INFO 25300 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default -2021-03-22 02:07:15.892 INFO 25300 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. -2021-03-22 02:07:16.237 INFO 25300 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 327 ms. Found 16 JPA repository interfaces. -2021-03-22 02:07:17.468 INFO 25300 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) -2021-03-22 02:07:17.483 INFO 25300 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] -2021-03-22 02:07:17.484 INFO 25300 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-03-22 02:07:17.742 INFO 25300 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext -2021-03-22 02:07:17.743 INFO 25300 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3758 ms -2021-03-22 02:07:17.840 INFO 25300 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... -2021-03-22 02:07:18.083 INFO 25300 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. -2021-03-22 02:07:18.095 INFO 25300 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' -2021-03-22 02:07:18.421 INFO 25300 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] -2021-03-22 02:07:18.527 INFO 25300 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final -2021-03-22 02:07:18.838 INFO 25300 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} -2021-03-22 02:07:18.892 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@51424203 -2021-03-22 02:07:18.893 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@51424203 -2021-03-22 02:07:18.893 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@51424203 -2021-03-22 02:07:18.896 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@161d95c6 -2021-03-22 02:07:18.897 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@852ef8d -2021-03-22 02:07:18.899 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@4cae66a8 -2021-03-22 02:07:18.900 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@270d5060 -2021-03-22 02:07:18.900 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@270d5060 -2021-03-22 02:07:18.901 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@270d5060 -2021-03-22 02:07:18.902 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@987a0bb -2021-03-22 02:07:18.904 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@987a0bb -2021-03-22 02:07:18.904 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@987a0bb -2021-03-22 02:07:18.905 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@47a3d56a -2021-03-22 02:07:18.905 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@47a3d56a -2021-03-22 02:07:18.905 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@47a3d56a -2021-03-22 02:07:18.908 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@6d31f106 -2021-03-22 02:07:18.908 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@6d31f106 -2021-03-22 02:07:18.908 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@6d31f106 -2021-03-22 02:07:18.912 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@7f426ddd -2021-03-22 02:07:18.912 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@7f426ddd -2021-03-22 02:07:18.913 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@7f426ddd -2021-03-22 02:07:18.916 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@38de5daf -2021-03-22 02:07:18.916 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@38de5daf -2021-03-22 02:07:18.916 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@38de5daf -2021-03-22 02:07:18.917 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@13ca16bf -2021-03-22 02:07:18.917 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@13ca16bf -2021-03-22 02:07:18.917 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@13ca16bf -2021-03-22 02:07:18.919 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@104a287c -2021-03-22 02:07:18.919 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@104a287c -2021-03-22 02:07:18.920 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@166b11e -2021-03-22 02:07:18.920 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@166b11e -2021-03-22 02:07:18.921 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@f017dd0 -2021-03-22 02:07:18.922 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@f017dd0 -2021-03-22 02:07:18.923 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@6bd92538 -2021-03-22 02:07:18.923 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@4567fb2b -2021-03-22 02:07:18.925 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@36ad5f2a -2021-03-22 02:07:18.925 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@36ad5f2a -2021-03-22 02:07:18.927 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@7c901203 -2021-03-22 02:07:18.928 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@7c901203 -2021-03-22 02:07:18.931 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@1a497286 -2021-03-22 02:07:18.932 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@1a497286 -2021-03-22 02:07:18.933 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@aa752bb -2021-03-22 02:07:18.934 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@aa752bb -2021-03-22 02:07:18.935 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@389a5022 -2021-03-22 02:07:18.935 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@389a5022 -2021-03-22 02:07:18.936 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@41a16eb3 -2021-03-22 02:07:18.936 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@41a16eb3 -2021-03-22 02:07:18.938 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@684372d0 -2021-03-22 02:07:18.938 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@684372d0 -2021-03-22 02:07:18.941 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@6060146b -2021-03-22 02:07:18.941 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@6060146b -2021-03-22 02:07:18.955 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@795f6681 -2021-03-22 02:07:18.955 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@795f6681 -2021-03-22 02:07:18.959 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@5d1a859c -2021-03-22 02:07:18.959 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@5d1a859c -2021-03-22 02:07:18.961 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@13004dd8 -2021-03-22 02:07:18.961 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@13004dd8 -2021-03-22 02:07:18.963 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@4aa22cc2 -2021-03-22 02:07:18.964 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@4aa22cc2 -2021-03-22 02:07:18.964 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@4aa22cc2 -2021-03-22 02:07:18.966 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@59d6642a -2021-03-22 02:07:18.970 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@45984654 -2021-03-22 02:07:18.970 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@45984654 -2021-03-22 02:07:18.970 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@45984654 -2021-03-22 02:07:18.971 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@640c216b -2021-03-22 02:07:18.972 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@3d40498a -2021-03-22 02:07:18.973 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@1de5cc88 -2021-03-22 02:07:18.973 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@1de5cc88 -2021-03-22 02:07:18.974 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@59262a90 -2021-03-22 02:07:18.974 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@59262a90 -2021-03-22 02:07:18.975 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@c212536 -2021-03-22 02:07:18.976 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@c212536 -2021-03-22 02:07:18.978 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@60928a61 -2021-03-22 02:07:18.978 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@60928a61 -2021-03-22 02:07:18.980 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@7e18ced7 -2021-03-22 02:07:18.981 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@7e18ced7 -2021-03-22 02:07:18.981 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@3a0896b3 -2021-03-22 02:07:18.983 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@6e00837f -2021-03-22 02:07:18.984 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@6e00837f -2021-03-22 02:07:18.984 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@6e00837f -2021-03-22 02:07:18.985 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@1e6bd263 -2021-03-22 02:07:18.985 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@1e6bd263 -2021-03-22 02:07:18.985 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@1e6bd263 -2021-03-22 02:07:18.987 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@58601e7a -2021-03-22 02:07:18.988 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@163e8949 -2021-03-22 02:07:18.989 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@610fbe1c -2021-03-22 02:07:18.990 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@610fbe1c -2021-03-22 02:07:18.990 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@610fbe1c -2021-03-22 02:07:18.991 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@7871d261 -2021-03-22 02:07:18.991 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@7871d261 -2021-03-22 02:07:18.991 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@7871d261 -2021-03-22 02:07:18.992 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@1c6e3ff9 -2021-03-22 02:07:18.992 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@4f26425b -2021-03-22 02:07:18.995 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@1c68d0db -2021-03-22 02:07:18.995 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@1c68d0db -2021-03-22 02:07:18.996 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@18c7f6b5 -2021-03-22 02:07:18.998 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@2eebce87 -2021-03-22 02:07:18.998 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@2eebce87 -2021-03-22 02:07:19.000 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@6704df84 -2021-03-22 02:07:19.001 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@6704df84 -2021-03-22 02:07:19.002 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@15994b0b -2021-03-22 02:07:19.002 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@13aed42b -2021-03-22 02:07:19.005 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@3b3056a6 -2021-03-22 02:07:19.014 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@647fb583 -2021-03-22 02:07:19.015 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@647fb583 -2021-03-22 02:07:19.015 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@7ead1d80 -2021-03-22 02:07:19.015 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@1d1bf7bf -2021-03-22 02:07:19.015 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1182413a -2021-03-22 02:07:19.016 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@4d43a1b7 -2021-03-22 02:07:19.016 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@5b14f482 -2021-03-22 02:07:19.016 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@19705650 -2021-03-22 02:07:19.016 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@1a785fd5 -2021-03-22 02:07:19.016 DEBUG 25300 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@4a660b34 -2021-03-22 02:07:19.153 INFO 25300 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect -2021-03-22 02:07:19.281 DEBUG 25300 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@d49e8c6] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2712e8f4] -2021-03-22 02:07:19.599 DEBUG 25300 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType -2021-03-22 02:07:19.601 DEBUG 25300 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus -2021-03-22 02:07:19.870 DEBUG 25300 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@d49e8c6] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@2166c48a] -2021-03-22 02:07:20.767 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:33:04.076 INFO 8572 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@3c577368, org.springframework.security.web.context.SecurityContextPersistenceFilter@108fd5d5, org.springframework.security.web.header.HeaderWriterFilter@4f1aa2bc, org.springframework.security.web.authentication.logout.LogoutFilter@930911e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@28b47211, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4fe3199d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@57c7ec30, org.springframework.security.web.session.SessionManagementFilter@25c98637, org.springframework.security.web.access.ExceptionTranslationFilter@3ecc9baa, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3ba015b1] +2021-03-23 16:33:04.505 INFO 8572 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-23 16:33:04.895 INFO 8572 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' +2021-03-23 16:33:04.995 INFO 8572 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-23 16:33:05.013 INFO 8572 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 12.374 seconds (JVM running for 15.609) +2021-03-23 16:33:52.417 INFO 8572 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-23 16:33:52.419 INFO 8572 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-23 16:33:52.422 INFO 8572 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms +2021-03-23 16:33:52.506 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-23 16:33:52.506 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-23 16:33:52.507 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-23 16:33:52.507 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : POST /api/public/user/password/reset +2021-03-23 16:33:52.541 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : null +2021-03-23 16:33:52.560 INFO 8572 --- [http-nio-8080-exec-1] c.e.r.common.GlobalExceptionHandler : com.example.restcontroller.common.exception.AuthFailException인증정보가 정확하지 않습니다 +2021-03-23 16:35:06.543 INFO 16716 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 16716 (C:\Users\Woojin\Desktop\study\Study\rest-controller-practice\build\classes\java\main started by 김우진 in C:\Users\Woojin\Desktop\study\Study\rest-controller-practice) +2021-03-23 16:35:06.551 INFO 16716 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-23 16:35:08.544 INFO 16716 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-23 16:35:08.937 INFO 16716 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 373 ms. Found 16 JPA repository interfaces. +2021-03-23 16:35:10.545 INFO 16716 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-23 16:35:10.569 INFO 16716 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-23 16:35:10.570 INFO 16716 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-23 16:35:10.942 INFO 16716 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-23 16:35:10.942 INFO 16716 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 4289 ms +2021-03-23 16:35:11.102 INFO 16716 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-23 16:35:11.381 INFO 16716 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-23 16:35:11.396 INFO 16716 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-23 16:35:11.773 INFO 16716 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-23 16:35:11.881 INFO 16716 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-23 16:35:12.154 INFO 16716 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-23 16:35:12.220 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@48ccbb32 +2021-03-23 16:35:12.221 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@48ccbb32 +2021-03-23 16:35:12.222 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@48ccbb32 +2021-03-23 16:35:12.222 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@3b6c2be6 +2021-03-23 16:35:12.224 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@4ae280da +2021-03-23 16:35:12.225 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@446b64b3 +2021-03-23 16:35:12.241 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@3a4e524 +2021-03-23 16:35:12.241 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@3a4e524 +2021-03-23 16:35:12.241 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@3a4e524 +2021-03-23 16:35:12.243 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@30159886 +2021-03-23 16:35:12.244 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@30159886 +2021-03-23 16:35:12.244 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@30159886 +2021-03-23 16:35:12.246 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@19eea77c +2021-03-23 16:35:12.247 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@19eea77c +2021-03-23 16:35:12.247 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@19eea77c +2021-03-23 16:35:12.251 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@69feb4d9 +2021-03-23 16:35:12.252 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@69feb4d9 +2021-03-23 16:35:12.252 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@69feb4d9 +2021-03-23 16:35:12.254 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@3ccb12d +2021-03-23 16:35:12.254 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@3ccb12d +2021-03-23 16:35:12.254 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@3ccb12d +2021-03-23 16:35:12.256 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@41fc0084 +2021-03-23 16:35:12.256 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@41fc0084 +2021-03-23 16:35:12.257 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@41fc0084 +2021-03-23 16:35:12.260 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4628a02b +2021-03-23 16:35:12.260 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4628a02b +2021-03-23 16:35:12.261 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4628a02b +2021-03-23 16:35:12.262 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@5203c80f +2021-03-23 16:35:12.262 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@5203c80f +2021-03-23 16:35:12.267 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@4cae66a8 +2021-03-23 16:35:12.267 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@4cae66a8 +2021-03-23 16:35:12.269 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@3181d4de +2021-03-23 16:35:12.269 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@3181d4de +2021-03-23 16:35:12.271 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@1815577b +2021-03-23 16:35:12.273 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@ee96866 +2021-03-23 16:35:12.274 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@3855d9b2 +2021-03-23 16:35:12.274 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@3855d9b2 +2021-03-23 16:35:12.277 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@532dacf5 +2021-03-23 16:35:12.277 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@532dacf5 +2021-03-23 16:35:12.279 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@2f4d01b6 +2021-03-23 16:35:12.280 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@2f4d01b6 +2021-03-23 16:35:12.286 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@661e279d +2021-03-23 16:35:12.286 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@661e279d +2021-03-23 16:35:12.288 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@32e5af53 +2021-03-23 16:35:12.288 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@32e5af53 +2021-03-23 16:35:12.290 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@27bcb4ad +2021-03-23 16:35:12.291 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@27bcb4ad +2021-03-23 16:35:12.292 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@1e191150 +2021-03-23 16:35:12.292 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@1e191150 +2021-03-23 16:35:12.294 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@aca3c85 +2021-03-23 16:35:12.295 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@aca3c85 +2021-03-23 16:35:12.302 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@1002d192 +2021-03-23 16:35:12.302 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@1002d192 +2021-03-23 16:35:12.307 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@edb83f8 +2021-03-23 16:35:12.307 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@edb83f8 +2021-03-23 16:35:12.310 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@aa752bb +2021-03-23 16:35:12.310 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@aa752bb +2021-03-23 16:35:12.313 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@6e807e2 +2021-03-23 16:35:12.314 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@6e807e2 +2021-03-23 16:35:12.314 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@6e807e2 +2021-03-23 16:35:12.317 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@41a16eb3 +2021-03-23 16:35:12.321 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@652e345 +2021-03-23 16:35:12.321 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@652e345 +2021-03-23 16:35:12.321 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@652e345 +2021-03-23 16:35:12.323 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@1af677f8 +2021-03-23 16:35:12.325 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@2dcd0e41 +2021-03-23 16:35:12.327 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@3a45afd4 +2021-03-23 16:35:12.328 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@3a45afd4 +2021-03-23 16:35:12.332 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@2035d65b +2021-03-23 16:35:12.332 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@2035d65b +2021-03-23 16:35:12.334 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@394fb736 +2021-03-23 16:35:12.334 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@394fb736 +2021-03-23 16:35:12.336 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@13004dd8 +2021-03-23 16:35:12.336 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@13004dd8 +2021-03-23 16:35:12.338 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@314b7945 +2021-03-23 16:35:12.339 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@314b7945 +2021-03-23 16:35:12.340 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@2049e582 +2021-03-23 16:35:12.342 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@288728e +2021-03-23 16:35:12.342 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@288728e +2021-03-23 16:35:12.342 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@288728e +2021-03-23 16:35:12.344 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7308c820 +2021-03-23 16:35:12.345 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7308c820 +2021-03-23 16:35:12.345 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7308c820 +2021-03-23 16:35:12.347 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@3e52ed5d +2021-03-23 16:35:12.352 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@14d1737a +2021-03-23 16:35:12.354 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@23e2c1ca +2021-03-23 16:35:12.354 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@23e2c1ca +2021-03-23 16:35:12.354 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@23e2c1ca +2021-03-23 16:35:12.357 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@78479f2b +2021-03-23 16:35:12.357 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@78479f2b +2021-03-23 16:35:12.357 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@78479f2b +2021-03-23 16:35:12.359 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@49653791 +2021-03-23 16:35:12.359 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@1b0e031b +2021-03-23 16:35:12.361 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@5d5d3a5c +2021-03-23 16:35:12.362 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@5d5d3a5c +2021-03-23 16:35:12.363 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@4601047 +2021-03-23 16:35:12.368 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@d108406 +2021-03-23 16:35:12.368 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@d108406 +2021-03-23 16:35:12.371 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@394a6d2b +2021-03-23 16:35:12.371 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@394a6d2b +2021-03-23 16:35:12.372 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@7f5ce33e +2021-03-23 16:35:12.373 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@7aae1170 +2021-03-23 16:35:12.376 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@a457c2b +2021-03-23 16:35:12.384 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@4ebd6fd6 +2021-03-23 16:35:12.385 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@4ebd6fd6 +2021-03-23 16:35:12.387 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@4438938e +2021-03-23 16:35:12.387 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@4e50ae56 +2021-03-23 16:35:12.387 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1c68d0db +2021-03-23 16:35:12.387 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@9be7319 +2021-03-23 16:35:12.388 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@91a2543 +2021-03-23 16:35:12.388 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@42730828 +2021-03-23 16:35:12.388 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@18c7f6b5 +2021-03-23 16:35:12.388 DEBUG 16716 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@629b780f +2021-03-23 16:35:12.512 INFO 16716 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-23 16:35:12.666 DEBUG 16716 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4a9b92c6] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@6eed46e9] +2021-03-23 16:35:12.958 DEBUG 16716 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-23 16:35:12.960 DEBUG 16716 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-23 16:35:13.328 DEBUG 16716 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@4a9b92c6] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@2493eec6] +2021-03-23 16:35:14.738 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board CASCADE -2021-03-22 02:07:20.770 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.743 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_bookmark CASCADE -2021-03-22 02:07:20.770 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.743 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_comment CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.744 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_hits CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.744 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_like CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.744 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_report CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.744 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_scrap CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.745 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists board_type CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.745 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists logs CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.745 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists mail_template CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.745 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists notice CASCADE -2021-03-22 02:07:20.771 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.746 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists notice_like CASCADE -2021-03-22 02:07:20.772 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.746 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists user CASCADE -2021-03-22 02:07:20.772 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.748 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists user_interest CASCADE -2021-03-22 02:07:20.772 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.751 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists user_login_history CASCADE -2021-03-22 02:07:20.772 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.752 DEBUG 16716 --- [main] org.hibernate.SQL : drop table if exists user_point CASCADE -2021-03-22 02:07:20.775 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.756 DEBUG 16716 --- [main] org.hibernate.SQL : create table board ( id bigint generated by default as identity, @@ -1259,7 +1159,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.799 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.779 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_bookmark ( id bigint generated by default as identity, @@ -1271,7 +1171,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.800 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.782 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_comment ( id bigint generated by default as identity, @@ -1281,7 +1181,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.801 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.784 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_hits ( id bigint generated by default as identity, @@ -1290,7 +1190,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.802 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.785 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_like ( id bigint generated by default as identity, @@ -1299,7 +1199,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.803 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.787 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_report ( id bigint generated by default as identity, @@ -1315,7 +1215,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_name varchar(255), primary key (id) ) -2021-03-22 02:07:20.804 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.789 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_scrap ( id bigint generated by default as identity, @@ -1329,7 +1229,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.806 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.792 DEBUG 16716 --- [main] org.hibernate.SQL : create table board_type ( id bigint generated by default as identity, @@ -1339,7 +1239,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 using_yn boolean not null, primary key (id) ) -2021-03-22 02:07:20.807 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.794 DEBUG 16716 --- [main] org.hibernate.SQL : create table logs ( id bigint generated by default as identity, @@ -1347,7 +1247,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 text clob, primary key (id) ) -2021-03-22 02:07:20.808 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.795 DEBUG 16716 --- [main] org.hibernate.SQL : create table mail_template ( id bigint generated by default as identity, @@ -1359,7 +1259,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 title varchar(255), primary key (id) ) -2021-03-22 02:07:20.813 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.799 DEBUG 16716 --- [main] org.hibernate.SQL : create table notice ( id bigint generated by default as identity, @@ -1374,7 +1274,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.815 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.804 DEBUG 16716 --- [main] org.hibernate.SQL : create table notice_like ( id bigint generated by default as identity, @@ -1382,13 +1282,15 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.820 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.811 DEBUG 16716 --- [main] org.hibernate.SQL : create table user ( id bigint generated by default as identity, email varchar(255) not null, lock_yn boolean, password varchar(255) not null, + password_reset_key varchar(255), + password_reset_yn boolean not null, phone varchar(255) not null, reg_date timestamp, status varchar(255), @@ -1396,7 +1298,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_name varchar(255) not null, primary key (id) ) -2021-03-22 02:07:20.822 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.817 DEBUG 16716 --- [main] org.hibernate.SQL : create table user_interest ( id bigint generated by default as identity, @@ -1405,7 +1307,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.823 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.819 DEBUG 16716 --- [main] org.hibernate.SQL : create table user_login_history ( id bigint generated by default as identity, @@ -1416,7 +1318,7 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_name varchar(255), primary key (id) ) -2021-03-22 02:07:20.824 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.822 DEBUG 16716 --- [main] org.hibernate.SQL : create table user_point ( id bigint generated by default as identity, @@ -1426,126 +1328,171 @@ Using generated security password: 07b8af22-cf57-496f-a329-0200f8038bd5 user_id bigint, primary key (id) ) -2021-03-22 02:07:20.826 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.824 DEBUG 16716 --- [main] org.hibernate.SQL : alter table user add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) -2021-03-22 02:07:20.833 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.828 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board add constraint FK59iw5qt320s9l10vbxey9as5p foreign key (board_type_id) references board_type -2021-03-22 02:07:20.851 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.845 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board add constraint FKfyf1fchnby6hndhlfaidier1r foreign key (user_id) references user -2021-03-22 02:07:20.853 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.851 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_bookmark add constraint FK_BOARD_BOOKMARK_USER_ID foreign key (user_id) references user -2021-03-22 02:07:20.855 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.854 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_BOARD_ID foreign key (board_id) references board -2021-03-22 02:07:20.857 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.857 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_comment add constraint FK_BOARD_COMMENT_USER_ID foreign key (user_id) references user -2021-03-22 02:07:20.859 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.859 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_hits add constraint FK8ptvjkodqmonm762uo9v8ocha foreign key (board_id) references board -2021-03-22 02:07:20.864 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.861 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_hits add constraint FKjkkt5o4uyvoo26g31v71pww4w foreign key (user_id) references user -2021-03-22 02:07:20.867 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.865 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_like add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq foreign key (board_id) references board -2021-03-22 02:07:20.869 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.869 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_like add constraint FKpf406vodal6lejcg4fkwcjr2o foreign key (user_id) references user -2021-03-22 02:07:20.872 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.871 DEBUG 16716 --- [main] org.hibernate.SQL : alter table board_scrap add constraint FK_BOARD_SCRAP_USER_ID foreign key (user_id) references user -2021-03-22 02:07:20.873 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.873 DEBUG 16716 --- [main] org.hibernate.SQL : alter table notice add constraint FKcvf4mh5se36inrxn7xlh2brfv foreign key (user_id) references user -2021-03-22 02:07:20.876 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.874 DEBUG 16716 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKm2krt4h5dcpydbb4tlvxyr27 foreign key (notice_id) references notice -2021-03-22 02:07:20.880 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.877 DEBUG 16716 --- [main] org.hibernate.SQL : alter table notice_like add constraint FKnplmervi6gx6dqj4vpnq7jn6g foreign key (user_id) references user -2021-03-22 02:07:20.882 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.879 DEBUG 16716 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_INTEREST_USER_ID foreign key (interest_user_id) references user -2021-03-22 02:07:20.884 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.887 DEBUG 16716 --- [main] org.hibernate.SQL : alter table user_interest add constraint FK_USER_INTEREST_USER_ID foreign key (user_id) references user -2021-03-22 02:07:20.886 DEBUG 25300 --- [main] org.hibernate.SQL : +2021-03-23 16:35:14.891 DEBUG 16716 --- [main] org.hibernate.SQL : alter table user_point add constraint FK_USER_POINT_USER_ID foreign key (user_id) references user -2021-03-22 02:07:20.892 INFO 25300 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] -2021-03-22 02:07:20.905 TRACE 25300 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2166c48a] for TypeConfiguration -2021-03-22 02:07:20.908 INFO 25300 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' -2021-03-22 02:07:22.898 WARN 25300 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning -2021-03-22 02:07:23.300 INFO 25300 --- [main] .s.s.UserDetailsServiceAutoConfiguration : +2021-03-23 16:35:14.904 INFO 16716 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-23 16:35:14.921 TRACE 16716 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2493eec6] for TypeConfiguration +2021-03-23 16:35:14.926 INFO 16716 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-23 16:35:17.142 WARN 16716 --- [main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning +2021-03-23 16:35:17.582 INFO 16716 --- [main] .s.s.UserDetailsServiceAutoConfiguration : -Using generated security password: 51e235f6-f83d-437f-9c97-2fdcc1f33d32 +Using generated security password: c9849bd4-6f4a-4fd4-a787-6a01e7d1bf9d -2021-03-22 02:07:23.458 INFO 25300 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@cf0bc92, org.springframework.security.web.context.SecurityContextPersistenceFilter@4cddc3d9, org.springframework.security.web.header.HeaderWriterFilter@4ee1c29a, org.springframework.security.web.authentication.logout.LogoutFilter@22942eff, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3dcf6026, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3338d29d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@3f8a44a4, org.springframework.security.web.session.SessionManagementFilter@4fae4c3b, org.springframework.security.web.access.ExceptionTranslationFilter@58ebfbcb, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1a1dd8eb] -2021-03-22 02:07:23.749 INFO 25300 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' -2021-03-22 02:07:24.167 INFO 25300 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' -2021-03-22 02:07:24.251 INFO 25300 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' -2021-03-22 02:07:24.263 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 02:07:24.265 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 02:07:24.265 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 02:07:24.271 INFO 25300 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 11.998 seconds (JVM running for 15.967) -2021-03-22 02:07:24.282 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:07:24.283 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 02:07:24.283 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:07:24.355 DEBUG 25300 --- [scheduling-1] org.hibernate.SQL : +2021-03-23 16:35:17.735 INFO 16716 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@22942eff, org.springframework.security.web.context.SecurityContextPersistenceFilter@255b84a9, org.springframework.security.web.header.HeaderWriterFilter@5fee3c9c, org.springframework.security.web.authentication.logout.LogoutFilter@3093161a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@26723525, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@795e8ef5, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@26bbbe9e, org.springframework.security.web.session.SessionManagementFilter@30259c61, org.springframework.security.web.access.ExceptionTranslationFilter@74cf2d5f, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@488c6c98] +2021-03-23 16:35:18.029 INFO 16716 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-23 16:35:18.443 INFO 16716 --- [main] o.s.s.c.ThreadPoolTaskScheduler : Initializing ExecutorService 'taskScheduler' +2021-03-23 16:35:18.536 INFO 16716 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-23 16:35:18.556 INFO 16716 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 13.05 seconds (JVM running for 15.875) +2021-03-23 16:35:31.071 INFO 16716 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-23 16:35:31.073 INFO 16716 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-23 16:35:31.075 INFO 16716 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms +2021-03-23 16:35:31.492 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:35:31.493 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-23 16:35:31.493 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:35:31.538 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:35:31.538 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-23 16:35:31.539 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:35:31.607 DEBUG 16716 --- [http-nio-8080-exec-1] org.hibernate.SQL : + select + user0_.id as id1_12_, + user0_.email as email2_12_, + user0_.lock_yn as lock_yn3_12_, + user0_.password as password4_12_, + user0_.password_reset_key as password5_12_, + user0_.password_reset_yn as password6_12_, + user0_.phone as phone7_12_, + user0_.reg_date as reg_date8_12_, + user0_.status as status9_12_, + user0_.update_date as update_10_12_, + user0_.user_name as user_na11_12_ + from + user user0_ + where + user0_.email=? + and user0_.user_name=? +2021-03-23 16:35:31.617 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [haerong22@gmail.com] +2021-03-23 16:35:31.617 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [VARCHAR] - [kim] +2021-03-23 16:35:31.621 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [1] +2021-03-23 16:35:31.627 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-23 16:35:31.627 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] +2021-03-23 16:35:31.628 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-23 16:35:31.629 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password5_12_] : [VARCHAR]) - [null] +2021-03-23 16:35:31.629 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password6_12_] : [BOOLEAN]) - [false] +2021-03-23 16:35:31.629 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone7_12_] : [VARCHAR]) - [010-1234-1234] +2021-03-23 16:35:31.631 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date8_12_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-23 16:35:31.634 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status9_12_] : [VARCHAR]) - [USING] +2021-03-23 16:35:31.634 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_10_12_] : [TIMESTAMP]) - [null] +2021-03-23 16:35:31.635 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_na11_12_] : [VARCHAR]) - [kim] +2021-03-23 16:35:31.657 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-23 16:35:31.658 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-23 16:35:31.659 TRACE 16716 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-23 16:35:31.709 DEBUG 16716 --- [http-nio-8080-exec-1] org.hibernate.SQL : select mailtempla0_.id as id1_9_, mailtempla0_.contents as contents2_9_, @@ -1558,241 +1505,71 @@ Using generated security password: 51e235f6-f83d-437f-9c97-2fdcc1f33d32 mail_template mailtempla0_ where mailtempla0_.template_id=? -2021-03-22 02:07:24.366 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [USER_SERVICE_NOTICE] -2021-03-22 02:07:24.373 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [4] -2021-03-22 02:07:24.383 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

개인정보 이용내역 안내

서비스 이용중

] -2021-03-22 02:07:24.385 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-22T02:07:21.053097] -2021-03-22 02:07:24.386 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] -2021-03-22 02:07:24.386 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] -2021-03-22 02:07:24.386 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [USER_SERVICE_NOTICE] -2021-03-22 02:07:24.386 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님 안녕하세요.] -2021-03-22 02:07:24.435 DEBUG 25300 --- [scheduling-1] org.hibernate.SQL : - select - user0_.id as id1_12_, - user0_.email as email2_12_, - user0_.lock_yn as lock_yn3_12_, - user0_.password as password4_12_, - user0_.phone as phone5_12_, - user0_.reg_date as reg_date6_12_, - user0_.status as status7_12_, - user0_.update_date as update_d8_12_, - user0_.user_name as user_nam9_12_ - from - user user0_ -2021-03-22 02:07:24.437 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [1] -2021-03-22 02:07:24.437 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [haerong22@gmail.com] -2021-03-22 02:07:24.438 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:07:24.438 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:07:24.438 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-1234-1234] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-02-20T00:50:11] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [kim] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [2] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test22@test.com] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:07:24.440 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-4321-1111] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-02-25T12:33:16] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [lee] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [3] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test33@test.com] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:07:24.441 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-5555-3333] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-03-22T02:07:21.023210] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [hong] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [4] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test44@test.com] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-4343-2546] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-03-22T02:07:21.023210] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [STOP] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:07:24.442 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [park] -2021-03-22 02:07:24.468 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] -2021-03-22 02:07:24.469 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] -2021-03-22 02:07:24.469 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] -2021-03-22 02:07:24.469 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] -2021-03-22 02:07:24.469 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] -2021-03-22 02:07:24.469 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] -2021-03-22 02:07:24.470 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] -2021-03-22 02:07:24.470 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] -2021-03-22 02:07:24.470 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] -2021-03-22 02:07:24.470 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] -2021-03-22 02:07:24.471 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] -2021-03-22 02:07:24.471 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#2] -2021-03-22 02:07:24.472 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#2] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#2] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#3] -2021-03-22 02:07:24.473 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#3] -2021-03-22 02:07:24.475 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#3] -2021-03-22 02:07:24.475 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#3] -2021-03-22 02:07:24.475 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#3] -2021-03-22 02:07:24.475 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#4] -2021-03-22 02:07:24.476 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#4] -2021-03-22 02:07:24.477 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#4] -2021-03-22 02:07:24.477 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#4] -2021-03-22 02:07:24.477 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#4] -2021-03-22 02:07:24.477 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#4] -2021-03-22 02:07:24.481 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : haerong22@gmail.com -2021-03-22 02:07:29.092 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test22@test.com -2021-03-22 02:07:32.132 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test33@test.com -2021-03-22 02:07:35.612 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test44@test.com -2021-03-22 02:07:38.497 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:07:38.497 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 02:07:38.498 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:07:57.629 INFO 25300 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-03-22 02:07:57.630 INFO 25300 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' -2021-03-22 02:07:57.631 INFO 25300 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms -2021-03-22 02:08:38.503 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 02:08:38.503 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : 스케줄 실행!!!! -2021-03-22 02:08:38.503 INFO 25300 --- [scheduling-1] c.e.r.common.schedule.Scheduler : ################################ -2021-03-22 02:08:38.504 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:08:38.504 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! -2021-03-22 02:08:38.504 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:08:38.505 DEBUG 25300 --- [scheduling-1] org.hibernate.SQL : - select - mailtempla0_.id as id1_9_, - mailtempla0_.contents as contents2_9_, - mailtempla0_.reg_date as reg_date3_9_, - mailtempla0_.send_email as send_ema4_9_, - mailtempla0_.send_user_name as send_use5_9_, - mailtempla0_.template_id as template6_9_, - mailtempla0_.title as title7_9_ - from - mail_template mailtempla0_ +2021-03-23 16:35:31.710 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [USER_RESET_PASSWORD] +2021-03-23 16:35:31.710 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [1] +2021-03-23 16:35:31.710 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

{USER_NAME}님 안녕하세요.

아래 링크를 클릭하여, 비밀번호를 초기화해 주세요.

초기화

] +2021-03-23 16:35:31.710 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-23T16:35:15.117862] +2021-03-23 16:35:31.711 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] +2021-03-23 16:35:31.711 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] +2021-03-23 16:35:31.711 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [USER_RESET_PASSWORD] +2021-03-23 16:35:31.711 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님의 비밀번호 초기화 요청입니다.] +2021-03-23 16:35:35.889 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:35:35.889 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-23 16:35:35.889 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:35:35.897 DEBUG 16716 --- [http-nio-8080-exec-1] org.hibernate.SQL : + update + user + set + email=?, + lock_yn=?, + password=?, + password_reset_key=?, + password_reset_yn=?, + phone=?, + reg_date=?, + status=?, + update_date=?, + user_name=? where - mailtempla0_.template_id=? -2021-03-22 02:08:38.505 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [USER_SERVICE_NOTICE] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [4] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

개인정보 이용내역 안내

서비스 이용중

] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-22T02:07:21.053097] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] -2021-03-22 02:08:38.506 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [USER_SERVICE_NOTICE] -2021-03-22 02:08:38.507 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님 안녕하세요.] -2021-03-22 02:08:38.508 DEBUG 25300 --- [scheduling-1] org.hibernate.SQL : + id=? +2021-03-23 16:35:35.900 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [haerong22@gmail.com] +2021-03-23 16:35:35.901 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [BOOLEAN] - [false] +2021-03-23 16:35:35.901 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [3] as [VARCHAR] - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-23 16:35:35.901 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [4] as [VARCHAR] - [47a08d5e-c250-4aa3-b5c3-b543767c8e40] +2021-03-23 16:35:35.901 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [5] as [BOOLEAN] - [true] +2021-03-23 16:35:35.901 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [6] as [VARCHAR] - [010-1234-1234] +2021-03-23 16:35:35.902 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [7] as [TIMESTAMP] - [2021-02-20T00:50:11] +2021-03-23 16:35:35.902 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [8] as [VARCHAR] - [USING] +2021-03-23 16:35:35.902 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [9] as [TIMESTAMP] - [null] +2021-03-23 16:35:35.902 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [10] as [VARCHAR] - [kim] +2021-03-23 16:35:35.903 TRACE 16716 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [11] as [BIGINT] - [1] +2021-03-23 16:35:35.921 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:35:35.921 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-23 16:35:35.921 INFO 16716 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:36:29.874 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:36:29.875 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-23 16:36:29.875 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-23 16:36:29.876 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:36:29.876 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-23 16:36:29.876 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-23 16:36:29.878 DEBUG 16716 --- [http-nio-8080-exec-3] org.hibernate.SQL : select user0_.id as id1_12_, user0_.email as email2_12_, user0_.lock_yn as lock_yn3_12_, user0_.password as password4_12_, - user0_.phone as phone5_12_, - user0_.reg_date as reg_date6_12_, - user0_.status as status7_12_, - user0_.update_date as update_d8_12_, - user0_.user_name as user_nam9_12_ + user0_.password_reset_key as password5_12_, + user0_.password_reset_yn as password6_12_, + user0_.phone as phone7_12_, + user0_.reg_date as reg_date8_12_, + user0_.status as status9_12_, + user0_.update_date as update_10_12_, + user0_.user_name as user_na11_12_ from - user user0_ -2021-03-22 02:08:38.508 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [1] -2021-03-22 02:08:38.508 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [haerong22@gmail.com] -2021-03-22 02:08:38.508 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:08:38.509 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:08:38.509 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-1234-1234] -2021-03-22 02:08:38.509 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-02-20T00:50:11] -2021-03-22 02:08:38.509 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [kim] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [2] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test22@test.com] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:08:38.510 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-4321-1111] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-02-25T12:33:16] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [lee] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [3] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test33@test.com] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-5555-3333] -2021-03-22 02:08:38.511 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-03-22T02:07:21.023210] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [hong] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [4] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [test44@test.com] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] -2021-03-22 02:08:38.512 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-4343-2546] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-03-22T02:07:21.023210] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [STOP] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [park] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] -2021-03-22 02:08:38.513 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#2] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#2] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#2] -2021-03-22 02:08:38.514 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#2] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#3] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#3] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#3] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#3] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#3] -2021-03-22 02:08:38.515 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#3] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#4] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#4] -2021-03-22 02:08:38.516 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#4] -2021-03-22 02:08:38.517 TRACE 25300 --- [scheduling-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#4] -2021-03-22 02:08:38.517 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : haerong22@gmail.com -2021-03-22 02:08:42.005 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test22@test.com -2021-03-22 02:08:45.331 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test33@test.com -2021-03-22 02:08:48.160 INFO 25300 --- [scheduling-1] c.e.r.user.service.UserServiceImpl : test44@test.com -2021-03-22 02:08:51.613 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ -2021-03-22 02:08:51.614 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! -2021-03-22 02:08:51.614 INFO 25300 --- [scheduling-1] c.e.r.common.aop.LoginLogger : ############################################################ + user user0_ + where + user0_.email=? + and user0_.user_name=? +2021-03-23 16:36:29.878 TRACE 16716 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [haerong22@gmail.com] +2021-03-23 16:36:29.879 TRACE 16716 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [VARCHAR] - [k22im] +2021-03-23 16:36:29.887 INFO 16716 --- [http-nio-8080-exec-3] c.e.r.common.GlobalExceptionHandler : com.example.restcontroller.common.exception.BizException회원 정보가 존재하지 않습니다. diff --git a/rest-controller-practice/logs/spring-jpa.log.2021-03-22.0.gz b/rest-controller-practice/logs/spring-jpa.log.2021-03-22.0.gz new file mode 100644 index 0000000000000000000000000000000000000000..8b22993a256d45bba782f0f5c8f67cb407113c8f GIT binary patch literal 17337 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 UqbzaAcsarRUw chapter5_3(@RequestBody @Valid UserPasswordResetInput userPasswordResetInput, + BindingResult bindingResult) { + if (bindingResult.hasFieldErrors()) { + return ResponseResult.fail("입력값이 정확하지 않습니다.", ResponseError.of(bindingResult.getFieldErrors())); + } + + ServiceResult result = userService.resetPassword(userPasswordResetInput); + return ResponseResult.result(result); + } } \ No newline at end of file diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/user/entity/User.java b/rest-controller-practice/src/main/java/com/example/restcontroller/user/entity/User.java index f573f929..5f93ba2b 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/user/entity/User.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/user/entity/User.java @@ -41,6 +41,10 @@ public class User { @Column private boolean lockYn; + private boolean passwordResetYn; + + private String passwordResetKey; + private LocalDateTime regDate; private LocalDateTime updateDate; diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/user/model/UserPasswordResetInput.java b/rest-controller-practice/src/main/java/com/example/restcontroller/user/model/UserPasswordResetInput.java new file mode 100644 index 00000000..9a0c78ee --- /dev/null +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/user/model/UserPasswordResetInput.java @@ -0,0 +1,24 @@ +package com.example.restcontroller.user.model; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +import javax.validation.constraints.Email; +import javax.validation.constraints.NotBlank; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class UserPasswordResetInput { + + @Email(message = "이메일 형식이 아닙니다.") + @NotBlank(message = "이메일은 필수 입력사항입니다.") + private String email; + + @NotBlank(message = "이름은 필수 입력사항입니다.") + private String userName; + +} diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/user/repository/UserRepository.java b/rest-controller-practice/src/main/java/com/example/restcontroller/user/repository/UserRepository.java index 3da1b6a7..9863ba14 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/user/repository/UserRepository.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/user/repository/UserRepository.java @@ -18,8 +18,8 @@ public interface UserRepository extends JpaRepository { Optional findByIdAndPassword(Long id, String password); Optional findByUserNameAndPhone(String userName, String phone); - Optional findByEmail(String email); + Optional findByEmailAndUserName(String email, String userName); List findByEmailContainsAndUserNameContainsAndPhoneContains(String email, String userName, String phone); diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserService.java b/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserService.java index 5d1a2671..a2097b88 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserService.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserService.java @@ -27,4 +27,6 @@ public interface UserService { ServiceResult addUser(UserInput userInput); void sendServiceNotice(); + + ServiceResult resetPassword(UserPasswordResetInput userPasswordResetInput); } diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserServiceImpl.java b/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserServiceImpl.java index d0b54023..48149491 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserServiceImpl.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/user/service/UserServiceImpl.java @@ -24,6 +24,7 @@ import java.time.LocalDateTime; import java.time.LocalTime; import java.util.List; import java.util.Optional; +import java.util.UUID; import java.util.stream.Collectors; @Slf4j @@ -202,4 +203,32 @@ public class UserServiceImpl implements UserService { }); } + + @Transactional + @Override + public ServiceResult resetPassword(UserPasswordResetInput userPasswordResetInput) { + User userEntity = userRepository.findByEmailAndUserName(userPasswordResetInput.getEmail(), userPasswordResetInput.getUserName()) + .orElseThrow(() -> new BizException("회원 정보가 존재하지 않습니다.")); + + String passwordResetKey = UUID.randomUUID().toString(); + userEntity.setPasswordResetYn(true); + userEntity.setPasswordResetKey(passwordResetKey); + + MailTemplate mailTemplate = mailTemplateRepository.findByTemplateId("USER_RESET_PASSWORD") + .orElseThrow(() -> new BizException("템플릿이 존재하지 않습니다.")); + + String serverUrl = "http://localhost:8080"; + String title = mailTemplate.getTitle().replaceAll("\\{USER_NAME}", userEntity.getUserName()); + String contents = mailTemplate.getContents() + .replaceAll("\\{USER_NAME}", userEntity.getUserName()) + .replaceAll("\\{SERVER_URL}", serverUrl + .replaceAll("\\{RESET_PASSWORD_KEY}", passwordResetKey)); + + String fromEmail = mailTemplate.getSendEmail(); + String fromUserName = mailTemplate.getSendUserName(); + + mailComponent.send(fromEmail, fromUserName, userEntity.getEmail(), userEntity.getUserName(), title, contents); + + return ServiceResult.success(); + } } diff --git a/rest-controller-practice/src/main/resources/data.sql b/rest-controller-practice/src/main/resources/data.sql index a1c8522a..5cf0e5c9 100644 --- a/rest-controller-practice/src/main/resources/data.sql +++ b/rest-controller-practice/src/main/resources/data.sql @@ -1,10 +1,10 @@ -insert into user(email, password, phone, reg_date, user_name, status, lock_yn) +insert into user(email, password, phone, reg_date, user_name, status, lock_yn, password_reset_yn) values - ('haerong22@gmail.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-1234-1234', '2021-02-20 00:50:11.000000', 'kim', 'USING', 0), - ('test22@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4321-1111', '2021-02-25 12:33:16.000000', 'lee', 'USING', 0), - ('test33@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-5555-3333', now(), 'hong', 'USING', 0), - ('test44@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4343-2546', now(), 'park', 'STOP', 0); + ('haerong22@gmail.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-1234-1234', '2021-02-20 00:50:11.000000', 'kim', 'USING', 0, 0), + ('test22@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4321-1111', '2021-02-25 12:33:16.000000', 'lee', 'USING', 0, 0), + ('test33@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-5555-3333', now(), 'hong', 'USING', 0, 0), + ('test44@test.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4343-2546', now(), 'park', 'STOP', 0, 0); insert into notice(contents, reg_date, title, user_id)