From 6863329313caa312ce86cc26beb1fb48fda71e2a Mon Sep 17 00:00:00 2001 From: haerong22 Date: Mon, 22 Mar 2021 00:01:07 +0900 Subject: [PATCH] rest controller practice : send mail - mail template(board_reply) --- rest-controller-practice/logs/spring-jpa.log | 4076 +++++++++++++++++ .../controller/ApiAdminBoardController.java | 13 +- .../restcontroller/board/entity/Board.java | 26 +- .../exception/BoardNotFoundException.java | 7 + .../board/model/BoardReplyInput.java | 15 + .../board/service/BoardService.java | 2 + .../board/service/BoardServiceImpl.java | 26 + .../common/GlobalExceptionHandler.java | 4 +- .../common/interceptor/CommonInterceptor.java | 6 +- .../config/WebMvcConfiguration.java | 2 +- .../src/main/resources/data.sql | 32 +- .../resources/mail-template/board_reply.html | 20 + 12 files changed, 4200 insertions(+), 29 deletions(-) create mode 100644 rest-controller-practice/src/main/java/com/example/restcontroller/board/exception/BoardNotFoundException.java create mode 100644 rest-controller-practice/src/main/java/com/example/restcontroller/board/model/BoardReplyInput.java create mode 100644 rest-controller-practice/src/main/resources/mail-template/board_reply.html diff --git a/rest-controller-practice/logs/spring-jpa.log b/rest-controller-practice/logs/spring-jpa.log index 96c65568..12186156 100644 --- a/rest-controller-practice/logs/spring-jpa.log +++ b/rest-controller-practice/logs/spring-jpa.log @@ -11208,3 +11208,4079 @@ Using generated security password: f7e987df-df37-4c85-9b76-3c590ea498d0 2021-03-21 22:08:35.858 INFO 7912 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ 2021-03-21 22:08:35.858 INFO 7912 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! 2021-03-21 22:08:35.858 INFO 7912 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:29:24.513 INFO 18108 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 18108 (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-21 23:29:24.525 INFO 18108 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:29:26.676 INFO 18108 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:29:27.095 INFO 18108 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 402 ms. Found 16 JPA repository interfaces. +2021-03-21 23:29:28.395 INFO 18108 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:29:28.412 INFO 18108 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:29:28.413 INFO 18108 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:29:28.659 INFO 18108 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:29:28.660 INFO 18108 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 4016 ms +2021-03-21 23:29:28.759 INFO 18108 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:29:29.046 INFO 18108 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:29:29.058 INFO 18108 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:29:29.441 INFO 18108 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:29:29.579 INFO 18108 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:29:29.904 INFO 18108 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:29:29.987 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@65036e8d +2021-03-21 23:29:29.987 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@65036e8d +2021-03-21 23:29:29.988 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@65036e8d +2021-03-21 23:29:29.989 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@16d41725 +2021-03-21 23:29:29.990 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@100bba26 +2021-03-21 23:29:29.991 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@1ad1c363 +2021-03-21 23:29:29.993 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@781dac73 +2021-03-21 23:29:29.994 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@781dac73 +2021-03-21 23:29:29.995 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@781dac73 +2021-03-21 23:29:29.996 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@33de7f3d +2021-03-21 23:29:29.997 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@33de7f3d +2021-03-21 23:29:29.999 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@33de7f3d +2021-03-21 23:29:30.003 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@11e17893 +2021-03-21 23:29:30.003 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@11e17893 +2021-03-21 23:29:30.003 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@11e17893 +2021-03-21 23:29:30.005 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@23648d2d +2021-03-21 23:29:30.005 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@23648d2d +2021-03-21 23:29:30.005 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@23648d2d +2021-03-21 23:29:30.008 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@1544ded3 +2021-03-21 23:29:30.008 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@1544ded3 +2021-03-21 23:29:30.008 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@1544ded3 +2021-03-21 23:29:30.009 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@3a38e4dc +2021-03-21 23:29:30.010 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@3a38e4dc +2021-03-21 23:29:30.010 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@3a38e4dc +2021-03-21 23:29:30.012 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@448cdb47 +2021-03-21 23:29:30.012 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@448cdb47 +2021-03-21 23:29:30.012 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@448cdb47 +2021-03-21 23:29:30.014 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@161d95c6 +2021-03-21 23:29:30.014 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@161d95c6 +2021-03-21 23:29:30.018 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@539fc5d1 +2021-03-21 23:29:30.018 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@539fc5d1 +2021-03-21 23:29:30.020 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@55222ee9 +2021-03-21 23:29:30.020 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@55222ee9 +2021-03-21 23:29:30.021 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@270d5060 +2021-03-21 23:29:30.021 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@3cf55e0c +2021-03-21 23:29:30.023 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@3afca2c +2021-03-21 23:29:30.024 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@3afca2c +2021-03-21 23:29:30.025 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@6d7b001b +2021-03-21 23:29:30.025 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@6d7b001b +2021-03-21 23:29:30.027 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@d6b532f +2021-03-21 23:29:30.027 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@d6b532f +2021-03-21 23:29:30.029 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@733534f9 +2021-03-21 23:29:30.029 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@733534f9 +2021-03-21 23:29:30.034 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@61853c7e +2021-03-21 23:29:30.034 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@61853c7e +2021-03-21 23:29:30.036 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@59d5a6fd +2021-03-21 23:29:30.037 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@59d5a6fd +2021-03-21 23:29:30.039 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@1e734eee +2021-03-21 23:29:30.039 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@1e734eee +2021-03-21 23:29:30.041 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@3bc20984 +2021-03-21 23:29:30.041 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@3bc20984 +2021-03-21 23:29:30.044 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6df11e91 +2021-03-21 23:29:30.044 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6df11e91 +2021-03-21 23:29:30.046 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@722787b5 +2021-03-21 23:29:30.047 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@722787b5 +2021-03-21 23:29:30.051 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@4217bce6 +2021-03-21 23:29:30.052 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@4217bce6 +2021-03-21 23:29:30.054 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@5b44318 +2021-03-21 23:29:30.055 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@5b44318 +2021-03-21 23:29:30.055 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@5b44318 +2021-03-21 23:29:30.057 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@730bea0 +2021-03-21 23:29:30.059 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@41f964f9 +2021-03-21 23:29:30.059 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@41f964f9 +2021-03-21 23:29:30.060 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@41f964f9 +2021-03-21 23:29:30.061 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@27bc1d44 +2021-03-21 23:29:30.063 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@5c53c235 +2021-03-21 23:29:30.066 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@66d3b881 +2021-03-21 23:29:30.067 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@66d3b881 +2021-03-21 23:29:30.068 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@52f9e8bb +2021-03-21 23:29:30.069 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@52f9e8bb +2021-03-21 23:29:30.070 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@72224107 +2021-03-21 23:29:30.070 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@72224107 +2021-03-21 23:29:30.071 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@1c7cd434 +2021-03-21 23:29:30.072 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@1c7cd434 +2021-03-21 23:29:30.073 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@5cce40d7 +2021-03-21 23:29:30.073 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@5cce40d7 +2021-03-21 23:29:30.074 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@4aa22cc2 +2021-03-21 23:29:30.076 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@f95d64d +2021-03-21 23:29:30.076 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@f95d64d +2021-03-21 23:29:30.077 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@f95d64d +2021-03-21 23:29:30.078 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@74a58a06 +2021-03-21 23:29:30.078 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@74a58a06 +2021-03-21 23:29:30.079 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@74a58a06 +2021-03-21 23:29:30.080 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@3bd08435 +2021-03-21 23:29:30.082 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@3d40498a +2021-03-21 23:29:30.086 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@1de5cc88 +2021-03-21 23:29:30.086 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@1de5cc88 +2021-03-21 23:29:30.086 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@1de5cc88 +2021-03-21 23:29:30.088 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@59262a90 +2021-03-21 23:29:30.088 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@59262a90 +2021-03-21 23:29:30.088 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@59262a90 +2021-03-21 23:29:30.089 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@d9f5fce +2021-03-21 23:29:30.089 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@7b377a53 +2021-03-21 23:29:30.091 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@563317c1 +2021-03-21 23:29:30.092 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@563317c1 +2021-03-21 23:29:30.092 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@305b43ca +2021-03-21 23:29:30.094 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@1753475d +2021-03-21 23:29:30.094 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@1753475d +2021-03-21 23:29:30.097 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@1e6bd263 +2021-03-21 23:29:30.098 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@1e6bd263 +2021-03-21 23:29:30.100 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@1515f782 +2021-03-21 23:29:30.102 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@62735b13 +2021-03-21 23:29:30.104 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@570b2057 +2021-03-21 23:29:30.109 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@33f4c769 +2021-03-21 23:29:30.109 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@33f4c769 +2021-03-21 23:29:30.110 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@615e83ac +2021-03-21 23:29:30.110 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@4438938e +2021-03-21 23:29:30.110 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@4e50ae56 +2021-03-21 23:29:30.110 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@1c68d0db +2021-03-21 23:29:30.111 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@9be7319 +2021-03-21 23:29:30.111 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@91a2543 +2021-03-21 23:29:30.111 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@42730828 +2021-03-21 23:29:30.111 DEBUG 18108 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@18c7f6b5 +2021-03-21 23:29:30.247 INFO 18108 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:29:30.385 DEBUG 18108 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6ce9771c] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@4a9b92c6] +2021-03-21 23:29:30.756 DEBUG 18108 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:29:30.758 DEBUG 18108 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:29:31.024 DEBUG 18108 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6ce9771c] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@2c1ea7be] +2021-03-21 23:29:31.828 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:29:31.831 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:29:31.832 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:29:31.835 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:29:31.835 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:29:31.836 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:29:31.837 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:29:31.837 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:29:31.837 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:29:31.837 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:29:31.838 DEBUG 18108 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:29:31.842 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.861 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.862 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.863 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.868 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.869 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:29:31.871 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.873 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:29:31.874 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:29:31.875 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:29:31.877 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.879 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.885 DEBUG 18108 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:29:31.888 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.889 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:29:31.890 DEBUG 18108 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:29:31.891 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:29:31.898 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:29:31.912 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:29:31.916 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:29:31.922 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:29:31.926 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:29:31.929 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:29:31.933 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:29:31.936 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:29:31.939 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:29:31.941 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:29:31.943 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:29:31.945 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:29:31.947 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:29:31.952 DEBUG 18108 --- [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-21 23:29:31.953 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:29:31.955 DEBUG 18108 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:29:31.961 INFO 18108 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:29:31.976 TRACE 18108 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@2c1ea7be] for TypeConfiguration +2021-03-21 23:29:31.980 INFO 18108 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:29:33.698 WARN 18108 --- [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-21 23:29:34.135 INFO 18108 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: 1d45ec42-c4f7-4b05-a316-798fe9bc88e8 + +2021-03-21 23:29:34.279 INFO 18108 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@72851503, org.springframework.security.web.context.SecurityContextPersistenceFilter@5eed2edf, org.springframework.security.web.header.HeaderWriterFilter@2468c0e4, org.springframework.security.web.authentication.logout.LogoutFilter@4cf1bd4a, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@1a67bde5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@389a9ff6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@690c3b1f, org.springframework.security.web.session.SessionManagementFilter@54816d7a, org.springframework.security.web.access.ExceptionTranslationFilter@50eae15a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@68a7f77a] +2021-03-21 23:29:34.594 INFO 18108 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:29:35.069 INFO 18108 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:29:35.083 INFO 18108 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 11.965 seconds (JVM running for 16.348) +2021-03-21 23:32:31.221 INFO 21160 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 21160 (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-21 23:32:31.227 INFO 21160 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:32:32.951 INFO 21160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:32:33.301 INFO 21160 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 338 ms. Found 16 JPA repository interfaces. +2021-03-21 23:32:34.517 INFO 21160 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:32:34.538 INFO 21160 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:32:34.538 INFO 21160 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:32:34.837 INFO 21160 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:32:34.837 INFO 21160 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3511 ms +2021-03-21 23:32:34.939 INFO 21160 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:32:35.208 INFO 21160 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:32:35.222 INFO 21160 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:32:35.553 INFO 21160 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:32:35.637 INFO 21160 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:32:35.858 INFO 21160 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:32:35.901 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@5844a2d1 +2021-03-21 23:32:35.902 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@5844a2d1 +2021-03-21 23:32:35.902 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@5844a2d1 +2021-03-21 23:32:35.903 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@3b28b7b0 +2021-03-21 23:32:35.904 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@504497fa +2021-03-21 23:32:35.906 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@43c39321 +2021-03-21 23:32:35.908 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@24691c5 +2021-03-21 23:32:35.908 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@24691c5 +2021-03-21 23:32:35.908 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@24691c5 +2021-03-21 23:32:35.910 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@5cc1bf20 +2021-03-21 23:32:35.910 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@5cc1bf20 +2021-03-21 23:32:35.911 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@5cc1bf20 +2021-03-21 23:32:35.913 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@bd93bc3 +2021-03-21 23:32:35.913 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@bd93bc3 +2021-03-21 23:32:35.913 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@bd93bc3 +2021-03-21 23:32:35.914 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@55bf35e5 +2021-03-21 23:32:35.914 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@55bf35e5 +2021-03-21 23:32:35.915 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@55bf35e5 +2021-03-21 23:32:35.916 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@6b16de91 +2021-03-21 23:32:35.916 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@6b16de91 +2021-03-21 23:32:35.916 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@6b16de91 +2021-03-21 23:32:35.918 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@685d7ba5 +2021-03-21 23:32:35.918 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@685d7ba5 +2021-03-21 23:32:35.918 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@685d7ba5 +2021-03-21 23:32:35.920 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@76d0ecd7 +2021-03-21 23:32:35.920 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@76d0ecd7 +2021-03-21 23:32:35.920 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@76d0ecd7 +2021-03-21 23:32:35.921 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@5dcf0772 +2021-03-21 23:32:35.921 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@5dcf0772 +2021-03-21 23:32:35.922 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@5e67a490 +2021-03-21 23:32:35.922 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@5e67a490 +2021-03-21 23:32:35.924 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@5d66ae3a +2021-03-21 23:32:35.924 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@5d66ae3a +2021-03-21 23:32:35.924 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@64a1116a +2021-03-21 23:32:35.925 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@ac4915e +2021-03-21 23:32:35.926 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@2bcda694 +2021-03-21 23:32:35.926 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@2bcda694 +2021-03-21 23:32:35.928 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@221ca495 +2021-03-21 23:32:35.928 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@221ca495 +2021-03-21 23:32:35.931 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@3ec9f8d +2021-03-21 23:32:35.932 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@3ec9f8d +2021-03-21 23:32:35.935 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@51424203 +2021-03-21 23:32:35.935 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@51424203 +2021-03-21 23:32:35.936 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@721bf7ad +2021-03-21 23:32:35.937 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@721bf7ad +2021-03-21 23:32:35.939 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@3962ec84 +2021-03-21 23:32:35.940 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@3962ec84 +2021-03-21 23:32:35.941 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@639c7f9c +2021-03-21 23:32:35.941 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@639c7f9c +2021-03-21 23:32:35.943 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@4c04216f +2021-03-21 23:32:35.943 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@4c04216f +2021-03-21 23:32:35.944 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6d31f106 +2021-03-21 23:32:35.945 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@6d31f106 +2021-03-21 23:32:35.950 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@beabd6b +2021-03-21 23:32:35.950 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@beabd6b +2021-03-21 23:32:35.952 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@44641d6c +2021-03-21 23:32:35.952 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@44641d6c +2021-03-21 23:32:35.954 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@1e191150 +2021-03-21 23:32:35.955 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@1e191150 +2021-03-21 23:32:35.955 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@1e191150 +2021-03-21 23:32:35.957 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@5323999f +2021-03-21 23:32:35.960 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@69a373fd +2021-03-21 23:32:35.960 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@69a373fd +2021-03-21 23:32:35.960 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@69a373fd +2021-03-21 23:32:35.961 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@6df11e91 +2021-03-21 23:32:35.962 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@4044589a +2021-03-21 23:32:35.964 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@edb83f8 +2021-03-21 23:32:35.964 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@edb83f8 +2021-03-21 23:32:35.967 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@7d401cdc +2021-03-21 23:32:35.967 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@7d401cdc +2021-03-21 23:32:35.969 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@2bb31455 +2021-03-21 23:32:35.969 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@2bb31455 +2021-03-21 23:32:35.971 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@6c995c5d +2021-03-21 23:32:35.971 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@6c995c5d +2021-03-21 23:32:35.971 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@53cb0bcb +2021-03-21 23:32:35.971 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@53cb0bcb +2021-03-21 23:32:35.972 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@63dda940 +2021-03-21 23:32:35.973 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@7a55fb81 +2021-03-21 23:32:35.973 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@7a55fb81 +2021-03-21 23:32:35.974 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@7a55fb81 +2021-03-21 23:32:35.975 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@7272ee51 +2021-03-21 23:32:35.975 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@7272ee51 +2021-03-21 23:32:35.975 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@7272ee51 +2021-03-21 23:32:35.976 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@762a10b6 +2021-03-21 23:32:35.976 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@3e0a9b1d +2021-03-21 23:32:35.977 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@28554ac8 +2021-03-21 23:32:35.977 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@28554ac8 +2021-03-21 23:32:35.978 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@28554ac8 +2021-03-21 23:32:35.978 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@21516c88 +2021-03-21 23:32:35.979 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@21516c88 +2021-03-21 23:32:35.980 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@21516c88 +2021-03-21 23:32:35.981 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@65d9e72a +2021-03-21 23:32:35.983 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@5cce40d7 +2021-03-21 23:32:35.985 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@27df5806 +2021-03-21 23:32:35.985 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@27df5806 +2021-03-21 23:32:35.986 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@f95d64d +2021-03-21 23:32:35.987 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@3ca17943 +2021-03-21 23:32:35.987 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@3ca17943 +2021-03-21 23:32:35.989 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@482a58c7 +2021-03-21 23:32:35.989 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@482a58c7 +2021-03-21 23:32:35.989 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@4e4894d +2021-03-21 23:32:35.990 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@dc1fadd +2021-03-21 23:32:35.992 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@7b377a53 +2021-03-21 23:32:35.997 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@25e8e59 +2021-03-21 23:32:35.997 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@25e8e59 +2021-03-21 23:32:36.000 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@221b77d7 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@5cd8d029 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@32a8ca06 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@6e8f2094 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@1753475d +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@d108406 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@799c8758 +2021-03-21 23:32:36.001 DEBUG 21160 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@6e00837f +2021-03-21 23:32:36.102 INFO 21160 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:32:36.223 DEBUG 21160 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1d226f27] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@1d944fc0] +2021-03-21 23:32:36.536 DEBUG 21160 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:32:36.538 DEBUG 21160 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:32:36.773 DEBUG 21160 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1d226f27] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@aee05f4] +2021-03-21 23:32:37.527 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:32:37.533 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:32:37.534 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:32:37.534 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:32:37.535 DEBUG 21160 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:32:37.538 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.555 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.556 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.558 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.559 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.559 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:32:37.561 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.561 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:32:37.563 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:32:37.567 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:32:37.568 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.570 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.574 DEBUG 21160 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:32:37.576 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.577 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:32:37.578 DEBUG 21160 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:32:37.582 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:32:37.588 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:32:37.600 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:32:37.603 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:32:37.605 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:32:37.606 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:32:37.607 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:32:37.609 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:32:37.610 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:32:37.611 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:32:37.613 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:32:37.619 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:32:37.621 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:32:37.623 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:32:37.625 DEBUG 21160 --- [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-21 23:32:37.627 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:32:37.629 DEBUG 21160 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:32:37.636 INFO 21160 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:32:37.650 TRACE 21160 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@aee05f4] for TypeConfiguration +2021-03-21 23:32:37.652 INFO 21160 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:32:39.341 WARN 21160 --- [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-21 23:32:39.886 INFO 21160 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: e8464d57-8e99-4252-b45c-6e859e106970 + +2021-03-21 23:32:40.128 INFO 21160 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@5318731f, org.springframework.security.web.context.SecurityContextPersistenceFilter@65871cfd, org.springframework.security.web.header.HeaderWriterFilter@113e6e06, org.springframework.security.web.authentication.logout.LogoutFilter@2468c0e4, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3bdc8975, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2f97e3de, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@2db82155, org.springframework.security.web.session.SessionManagementFilter@198a0416, org.springframework.security.web.access.ExceptionTranslationFilter@3fe21d0e, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@411576c7] +2021-03-21 23:32:40.515 INFO 21160 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:32:41.093 INFO 21160 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:32:41.125 INFO 21160 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 10.899 seconds (JVM running for 13.276) +2021-03-21 23:34:55.021 INFO 21160 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-21 23:34:55.023 INFO 21160 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-21 23:34:55.026 INFO 21160 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 3 ms +2021-03-21 23:34:55.240 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:34:55.240 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:34:55.240 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:34:55.269 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:34:55.270 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:34:55.270 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:34:55.329 DEBUG 21160 --- [http-nio-8080-exec-1] org.hibernate.SQL : + select + board0_.id as id1_0_0_, + board0_.board_type_id as board_ty9_0_0_, + board0_.content as content2_0_0_, + board0_.publish_end_date as publish_3_0_0_, + board0_.publish_start_date as publish_4_0_0_, + board0_.reg_date as reg_date5_0_0_, + board0_.reply_contents as reply_co6_0_0_, + board0_.title as title7_0_0_, + board0_.top_yn as top_yn8_0_0_, + board0_.user_id as user_id10_0_0_, + boardtype1_.id as id1_7_1_, + boardtype1_.board_name as board_na2_7_1_, + boardtype1_.reg_date as reg_date3_7_1_, + boardtype1_.update_date as update_d4_7_1_, + boardtype1_.using_yn as using_yn5_7_1_, + user2_.id as id1_12_2_, + user2_.email as email2_12_2_, + user2_.lock_yn as lock_yn3_12_2_, + user2_.password as password4_12_2_, + user2_.phone as phone5_12_2_, + user2_.reg_date as reg_date6_12_2_, + user2_.status as status7_12_2_, + user2_.update_date as update_d8_12_2_, + user2_.user_name as user_nam9_12_2_ + from + board board0_ + left outer join + board_type boardtype1_ + on board0_.board_type_id=boardtype1_.id + left outer join + user user2_ + on board0_.user_id=user2_.id + where + board0_.id=? +2021-03-21 23:34:55.343 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [8] +2021-03-21 23:34:55.354 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_7_1_] : [BIGINT]) - [4] +2021-03-21 23:34:55.355 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_2_] : [BIGINT]) - [1] +2021-03-21 23:34:55.371 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_ty9_0_0_] : [BIGINT]) - [4] +2021-03-21 23:34:55.378 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([content2_0_0_] : [CLOB]) - [문의 내용1] +2021-03-21 23:34:55.380 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_3_0_0_] : [DATE]) - [null] +2021-03-21 23:34:55.382 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_4_0_0_] : [DATE]) - [null] +2021-03-21 23:34:55.385 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date5_0_0_] : [TIMESTAMP]) - [2021-03-21T23:32:37.771821] +2021-03-21 23:34:55.385 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reply_co6_0_0_] : [CLOB]) - [null] +2021-03-21 23:34:55.385 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_0_0_] : [VARCHAR]) - [문의제목1] +2021-03-21 23:34:55.386 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([top_yn8_0_0_] : [BOOLEAN]) - [false] +2021-03-21 23:34:55.386 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_id10_0_0_] : [BIGINT]) - [1] +2021-03-21 23:34:55.389 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_na2_7_1_] : [VARCHAR]) - [문의게시판] +2021-03-21 23:34:55.389 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_7_1_] : [TIMESTAMP]) - [2021-03-21T23:32:37.770823] +2021-03-21 23:34:55.389 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d4_7_1_] : [TIMESTAMP]) - [null] +2021-03-21 23:34:55.390 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([using_yn5_7_1_] : [BOOLEAN]) - [true] +2021-03-21 23:34:55.390 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_2_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-21 23:34:55.390 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_2_] : [BOOLEAN]) - [false] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_2_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_2_] : [VARCHAR]) - [010-1234-1234] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_2_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_2_] : [VARCHAR]) - [USING] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_2_] : [TIMESTAMP]) - [null] +2021-03-21 23:34:55.391 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_2_] : [VARCHAR]) - [kim] +2021-03-21 23:34:55.418 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardCommentList#8] +2021-03-21 23:34:55.419 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardHitsList#8] +2021-03-21 23:34:55.419 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardLikeList#8] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.BoardType.boardList#4] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-21 23:34:55.422 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-21 23:34:55.423 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-21 23:34:55.423 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-21 23:34:55.423 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-21 23:34:55.424 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-21 23:34:55.424 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-21 23:34:55.424 TRACE 21160 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-21 23:34:55.539 DEBUG 21160 --- [http-nio-8080-exec-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_ + where + mailtempla0_.template_id=? +2021-03-21 23:34:55.540 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [BOARD_REPLY] +2021-03-21 23:34:55.542 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [3] +2021-03-21 23:34:55.542 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}

답변

{BOARD_REPLY_CONTENTS}
] +2021-03-21 23:34:55.543 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-21T23:32:37.778825] +2021-03-21 23:34:55.543 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] +2021-03-21 23:34:55.543 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] +2021-03-21 23:34:55.543 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [BOARD_REPLY] +2021-03-21 23:34:55.543 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님이 글에 답변이 작성되었습니다.] +2021-03-21 23:35:00.628 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:35:00.628 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:35:00.628 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:35:00.645 DEBUG 21160 --- [http-nio-8080-exec-1] org.hibernate.SQL : + update + board + set + board_type_id=?, + content=?, + publish_end_date=?, + publish_start_date=?, + reg_date=?, + reply_contents=?, + title=?, + top_yn=?, + user_id=? + where + id=? +2021-03-21 23:35:00.649 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [4] +2021-03-21 23:35:00.650 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [CLOB] - [문의 내용1] +2021-03-21 23:35:00.652 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [3] as [DATE] - [null] +2021-03-21 23:35:00.653 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [4] as [DATE] - [null] +2021-03-21 23:35:00.654 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [5] as [TIMESTAMP] - [2021-03-21T23:32:37.771821] +2021-03-21 23:35:00.654 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [6] as [CLOB] - [답변입니다.] +2021-03-21 23:35:00.655 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [7] as [VARCHAR] - [문의제목1] +2021-03-21 23:35:00.655 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [8] as [BOOLEAN] - [false] +2021-03-21 23:35:00.656 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [9] as [BIGINT] - [1] +2021-03-21 23:35:00.656 TRACE 21160 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [10] as [BIGINT] - [8] +2021-03-21 23:35:00.678 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:35:00.679 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-21 23:35:00.679 INFO 21160 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:40:52.594 INFO 14712 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 14712 (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-21 23:40:52.602 INFO 14712 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:40:54.783 INFO 14712 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:40:55.137 INFO 14712 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 336 ms. Found 16 JPA repository interfaces. +2021-03-21 23:40:56.475 INFO 14712 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:40:56.494 INFO 14712 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:40:56.496 INFO 14712 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:40:56.794 INFO 14712 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:40:56.796 INFO 14712 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 4083 ms +2021-03-21 23:40:56.912 INFO 14712 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:40:57.173 INFO 14712 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:40:57.186 INFO 14712 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:40:57.476 INFO 14712 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:40:57.585 INFO 14712 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:40:57.855 INFO 14712 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:40:57.903 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@3b28b7b0 +2021-03-21 23:40:57.903 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@3b28b7b0 +2021-03-21 23:40:57.904 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@3b28b7b0 +2021-03-21 23:40:57.904 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@504497fa +2021-03-21 23:40:57.905 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@43c39321 +2021-03-21 23:40:57.906 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@34d9df9f +2021-03-21 23:40:57.907 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@ddffa6c +2021-03-21 23:40:57.907 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@ddffa6c +2021-03-21 23:40:57.908 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@ddffa6c +2021-03-21 23:40:57.909 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@5abf6a99 +2021-03-21 23:40:57.909 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@5abf6a99 +2021-03-21 23:40:57.909 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@5abf6a99 +2021-03-21 23:40:57.910 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@7a814310 +2021-03-21 23:40:57.912 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@7a814310 +2021-03-21 23:40:57.915 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@7a814310 +2021-03-21 23:40:57.917 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@4b4a2fa8 +2021-03-21 23:40:57.918 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@4b4a2fa8 +2021-03-21 23:40:57.919 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@4b4a2fa8 +2021-03-21 23:40:57.920 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@65036e8d +2021-03-21 23:40:57.920 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@65036e8d +2021-03-21 23:40:57.921 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@65036e8d +2021-03-21 23:40:57.922 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@26d0ece6 +2021-03-21 23:40:57.923 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@26d0ece6 +2021-03-21 23:40:57.923 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@26d0ece6 +2021-03-21 23:40:57.924 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@35ac9ebd +2021-03-21 23:40:57.925 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@35ac9ebd +2021-03-21 23:40:57.925 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@35ac9ebd +2021-03-21 23:40:57.926 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@4df7d9ee +2021-03-21 23:40:57.926 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@4df7d9ee +2021-03-21 23:40:57.928 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@7f4e5a39 +2021-03-21 23:40:57.929 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@7f4e5a39 +2021-03-21 23:40:57.930 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@64a1116a +2021-03-21 23:40:57.931 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@64a1116a +2021-03-21 23:40:57.931 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@ac4915e +2021-03-21 23:40:57.932 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@23648d2d +2021-03-21 23:40:57.933 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@1544ded3 +2021-03-21 23:40:57.934 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@1544ded3 +2021-03-21 23:40:57.935 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@3a38e4dc +2021-03-21 23:40:57.936 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@3a38e4dc +2021-03-21 23:40:57.938 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@448cdb47 +2021-03-21 23:40:57.938 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@448cdb47 +2021-03-21 23:40:57.940 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@161d95c6 +2021-03-21 23:40:57.940 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@161d95c6 +2021-03-21 23:40:57.942 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@539fc5d1 +2021-03-21 23:40:57.942 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@539fc5d1 +2021-03-21 23:40:57.943 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@55222ee9 +2021-03-21 23:40:57.943 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@55222ee9 +2021-03-21 23:40:57.944 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@71369e1a +2021-03-21 23:40:57.945 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@71369e1a +2021-03-21 23:40:57.948 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@3719360c +2021-03-21 23:40:57.948 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@3719360c +2021-03-21 23:40:57.950 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@d6b532f +2021-03-21 23:40:57.950 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@d6b532f +2021-03-21 23:40:57.951 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@2bfc2f8b +2021-03-21 23:40:57.952 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@2bfc2f8b +2021-03-21 23:40:57.953 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@4357524b +2021-03-21 23:40:57.953 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@4357524b +2021-03-21 23:40:57.955 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@5323999f +2021-03-21 23:40:57.955 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@5323999f +2021-03-21 23:40:57.955 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@5323999f +2021-03-21 23:40:57.957 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@45eab322 +2021-03-21 23:40:57.960 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@372954e1 +2021-03-21 23:40:57.960 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@372954e1 +2021-03-21 23:40:57.960 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@372954e1 +2021-03-21 23:40:57.962 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@53cddaf8 +2021-03-21 23:40:57.964 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@1e721583 +2021-03-21 23:40:57.965 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@48dff674 +2021-03-21 23:40:57.966 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@48dff674 +2021-03-21 23:40:57.967 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@77fc19cf +2021-03-21 23:40:57.968 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@77fc19cf +2021-03-21 23:40:57.969 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@bb8ead8 +2021-03-21 23:40:57.969 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@bb8ead8 +2021-03-21 23:40:57.970 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@677cb96e +2021-03-21 23:40:57.971 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@677cb96e +2021-03-21 23:40:57.972 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@63dda940 +2021-03-21 23:40:57.972 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@63dda940 +2021-03-21 23:40:57.973 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@7bede4ea +2021-03-21 23:40:57.974 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@61911947 +2021-03-21 23:40:57.974 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@61911947 +2021-03-21 23:40:57.975 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@61911947 +2021-03-21 23:40:57.976 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@795f6681 +2021-03-21 23:40:57.976 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@795f6681 +2021-03-21 23:40:57.976 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@795f6681 +2021-03-21 23:40:57.977 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@3e0a9b1d +2021-03-21 23:40:57.979 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@4e3283f6 +2021-03-21 23:40:57.980 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@3271ec2a +2021-03-21 23:40:57.981 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@3271ec2a +2021-03-21 23:40:57.981 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@3271ec2a +2021-03-21 23:40:57.982 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@65d9e72a +2021-03-21 23:40:57.983 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@65d9e72a +2021-03-21 23:40:57.983 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@65d9e72a +2021-03-21 23:40:57.984 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@5cce40d7 +2021-03-21 23:40:57.985 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@4aa22cc2 +2021-03-21 23:40:57.987 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@f95d64d +2021-03-21 23:40:57.987 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@f95d64d +2021-03-21 23:40:57.988 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@45984654 +2021-03-21 23:40:57.990 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@3bd08435 +2021-03-21 23:40:57.990 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@3bd08435 +2021-03-21 23:40:57.992 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@4e4894d +2021-03-21 23:40:57.992 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@4e4894d +2021-03-21 23:40:57.993 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@dc1fadd +2021-03-21 23:40:57.993 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@59262a90 +2021-03-21 23:40:58.000 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@25214797 +2021-03-21 23:40:58.004 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@221b77d7 +2021-03-21 23:40:58.004 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@221b77d7 +2021-03-21 23:40:58.005 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@1753475d +2021-03-21 23:40:58.005 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@d108406 +2021-03-21 23:40:58.005 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@799c8758 +2021-03-21 23:40:58.005 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@6e00837f +2021-03-21 23:40:58.006 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@63e4484d +2021-03-21 23:40:58.006 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@6a5dd083 +2021-03-21 23:40:58.006 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@77663cd7 +2021-03-21 23:40:58.006 DEBUG 14712 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@1d17423f +2021-03-21 23:40:58.133 INFO 14712 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:40:58.282 DEBUG 14712 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@15ac02d5] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@2af9a5ef] +2021-03-21 23:40:58.727 DEBUG 14712 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:40:58.731 DEBUG 14712 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:40:59.081 DEBUG 14712 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@15ac02d5] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@70ee9d31] +2021-03-21 23:41:00.137 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:41:00.141 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:41:00.142 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:41:00.143 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:41:00.144 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:41:00.144 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:41:00.145 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:41:00.146 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:41:00.146 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:41:00.146 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:41:00.146 DEBUG 14712 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:41:00.150 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.169 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.170 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.172 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.173 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.174 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:41:00.176 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.177 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:41:00.180 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:41:00.181 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:41:00.183 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.185 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.190 DEBUG 14712 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:41:00.192 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.193 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:41:00.197 DEBUG 14712 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:41:00.199 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:41:00.203 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:41:00.219 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:41:00.221 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:41:00.224 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:41:00.225 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:41:00.227 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:41:00.230 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:41:00.233 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:41:00.235 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:41:00.237 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:41:00.239 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:41:00.241 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:41:00.243 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:41:00.246 DEBUG 14712 --- [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-21 23:41:00.250 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:41:00.252 DEBUG 14712 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:41:00.258 INFO 14712 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:41:00.270 TRACE 14712 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@70ee9d31] for TypeConfiguration +2021-03-21 23:41:00.274 INFO 14712 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:41:02.255 WARN 14712 --- [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-21 23:41:02.759 INFO 14712 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: a281b3af-1e88-4a2d-9a4e-578c340f5d07 + +2021-03-21 23:41:02.903 INFO 14712 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@40da1644, org.springframework.security.web.context.SecurityContextPersistenceFilter@951461a, org.springframework.security.web.header.HeaderWriterFilter@69e308e2, org.springframework.security.web.authentication.logout.LogoutFilter@75caecf7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@307e9c02, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@79735611, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@5980e29f, org.springframework.security.web.session.SessionManagementFilter@7c9c7e7d, org.springframework.security.web.access.ExceptionTranslationFilter@524418a2, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@5b5f61cc] +2021-03-21 23:41:03.185 INFO 14712 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:41:03.752 INFO 14712 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:41:03.769 INFO 14712 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 12.339 seconds (JVM running for 14.844) +2021-03-21 23:41:20.203 INFO 14712 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-21 23:41:20.206 INFO 14712 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-21 23:41:20.208 INFO 14712 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 2 ms +2021-03-21 23:41:20.456 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:41:20.456 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:41:20.456 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:41:20.484 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:41:20.484 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:41:20.485 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:41:20.533 DEBUG 14712 --- [http-nio-8080-exec-1] org.hibernate.SQL : + select + board0_.id as id1_0_0_, + board0_.board_type_id as board_ty9_0_0_, + board0_.content as content2_0_0_, + board0_.publish_end_date as publish_3_0_0_, + board0_.publish_start_date as publish_4_0_0_, + board0_.reg_date as reg_date5_0_0_, + board0_.reply_contents as reply_co6_0_0_, + board0_.title as title7_0_0_, + board0_.top_yn as top_yn8_0_0_, + board0_.user_id as user_id10_0_0_, + boardtype1_.id as id1_7_1_, + boardtype1_.board_name as board_na2_7_1_, + boardtype1_.reg_date as reg_date3_7_1_, + boardtype1_.update_date as update_d4_7_1_, + boardtype1_.using_yn as using_yn5_7_1_, + user2_.id as id1_12_2_, + user2_.email as email2_12_2_, + user2_.lock_yn as lock_yn3_12_2_, + user2_.password as password4_12_2_, + user2_.phone as phone5_12_2_, + user2_.reg_date as reg_date6_12_2_, + user2_.status as status7_12_2_, + user2_.update_date as update_d8_12_2_, + user2_.user_name as user_nam9_12_2_ + from + board board0_ + left outer join + board_type boardtype1_ + on board0_.board_type_id=boardtype1_.id + left outer join + user user2_ + on board0_.user_id=user2_.id + where + board0_.id=? +2021-03-21 23:41:20.542 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [8] +2021-03-21 23:41:20.553 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_7_1_] : [BIGINT]) - [4] +2021-03-21 23:41:20.554 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_2_] : [BIGINT]) - [1] +2021-03-21 23:41:20.561 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_ty9_0_0_] : [BIGINT]) - [4] +2021-03-21 23:41:20.566 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([content2_0_0_] : [CLOB]) - [문의 내용1] +2021-03-21 23:41:20.567 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_3_0_0_] : [DATE]) - [null] +2021-03-21 23:41:20.568 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_4_0_0_] : [DATE]) - [null] +2021-03-21 23:41:20.569 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date5_0_0_] : [TIMESTAMP]) - [2021-03-21T23:41:00.421146] +2021-03-21 23:41:20.570 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reply_co6_0_0_] : [CLOB]) - [null] +2021-03-21 23:41:20.570 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_0_0_] : [VARCHAR]) - [문의제목1] +2021-03-21 23:41:20.570 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([top_yn8_0_0_] : [BOOLEAN]) - [false] +2021-03-21 23:41:20.571 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_id10_0_0_] : [BIGINT]) - [1] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_na2_7_1_] : [VARCHAR]) - [문의게시판] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_7_1_] : [TIMESTAMP]) - [2021-03-21T23:41:00.419144] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d4_7_1_] : [TIMESTAMP]) - [null] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([using_yn5_7_1_] : [BOOLEAN]) - [true] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_2_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_2_] : [BOOLEAN]) - [false] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_2_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_2_] : [VARCHAR]) - [010-1234-1234] +2021-03-21 23:41:20.573 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_2_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-21 23:41:20.574 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_2_] : [VARCHAR]) - [USING] +2021-03-21 23:41:20.574 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_2_] : [TIMESTAMP]) - [null] +2021-03-21 23:41:20.574 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_2_] : [VARCHAR]) - [kim] +2021-03-21 23:41:20.592 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardCommentList#8] +2021-03-21 23:41:20.592 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardHitsList#8] +2021-03-21 23:41:20.592 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardLikeList#8] +2021-03-21 23:41:20.598 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.BoardType.boardList#4] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-21 23:41:20.599 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-21 23:41:20.600 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-21 23:41:20.600 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-21 23:41:20.600 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-21 23:41:20.600 TRACE 14712 --- [http-nio-8080-exec-1] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-21 23:41:20.667 DEBUG 14712 --- [http-nio-8080-exec-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_ + where + mailtempla0_.template_id=? +2021-03-21 23:41:20.667 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [BOARD_REPLY] +2021-03-21 23:41:20.668 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [3] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}

답변

{BOARD_REPLY_CONTENTS}
] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-21T23:41:00.429582] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [BOARD_REPLY] +2021-03-21 23:41:20.669 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님이 글에 답변이 작성되었습니다.] +2021-03-21 23:41:24.592 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:41:24.592 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:41:24.593 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:41:24.604 DEBUG 14712 --- [http-nio-8080-exec-1] org.hibernate.SQL : + update + board + set + board_type_id=?, + content=?, + publish_end_date=?, + publish_start_date=?, + reg_date=?, + reply_contents=?, + title=?, + top_yn=?, + user_id=? + where + id=? +2021-03-21 23:41:24.606 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [4] +2021-03-21 23:41:24.607 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [CLOB] - [문의 내용1] +2021-03-21 23:41:24.608 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [3] as [DATE] - [null] +2021-03-21 23:41:24.608 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [4] as [DATE] - [null] +2021-03-21 23:41:24.609 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [5] as [TIMESTAMP] - [2021-03-21T23:41:00.421146] +2021-03-21 23:41:24.609 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [6] as [CLOB] - [답변입니다.] +2021-03-21 23:41:24.609 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [7] as [VARCHAR] - [문의제목1] +2021-03-21 23:41:24.610 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [8] as [BOOLEAN] - [false] +2021-03-21 23:41:24.612 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [9] as [BIGINT] - [1] +2021-03-21 23:41:24.612 TRACE 14712 --- [http-nio-8080-exec-1] o.h.type.descriptor.sql.BasicBinder : binding parameter [10] as [BIGINT] - [8] +2021-03-21 23:41:24.636 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:41:24.636 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-21 23:41:24.636 INFO 14712 --- [http-nio-8080-exec-1] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:46:22.674 INFO 14712 --- [http-nio-8080-exec-9] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:46:22.675 INFO 14712 --- [http-nio-8080-exec-9] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:46:22.675 INFO 14712 --- [http-nio-8080-exec-9] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:46:22.695 INFO 14712 --- [http-nio-8080-exec-9] c.e.r.common.GlobalExceptionHandler : The string '�������)]P��������!L��ȉ' doesn't have a valid JSON format. +2021-03-21 23:46:40.401 INFO 14712 --- [http-nio-8080-exec-10] c.e.r.common.GlobalExceptionHandler : Missing request header 'TOKEN' for method parameter of type String +2021-03-21 23:47:00.820 INFO 14712 --- [http-nio-8080-exec-2] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:00.820 INFO 14712 --- [http-nio-8080-exec-2] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:47:00.820 INFO 14712 --- [http-nio-8080-exec-2] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:00.823 INFO 14712 --- [http-nio-8080-exec-2] c.e.r.common.GlobalExceptionHandler : The string '�������)]P��������!L��ȉ' doesn't have a valid JSON format. +2021-03-21 23:47:17.189 INFO 14712 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:17.190 INFO 14712 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:47:17.190 INFO 14712 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:17.222 INFO 14712 --- [http-nio-8080-exec-3] c.e.r.common.GlobalExceptionHandler : The Token has expired on Sun Mar 21 22:38:20 KST 2021. +2021-03-21 23:47:37.116 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:37.116 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:47:37.116 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:37.117 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:47:37.117 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:47:37.117 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:47:37.118 DEBUG 14712 --- [http-nio-8080-exec-4] org.hibernate.SQL : + select + board0_.id as id1_0_0_, + board0_.board_type_id as board_ty9_0_0_, + board0_.content as content2_0_0_, + board0_.publish_end_date as publish_3_0_0_, + board0_.publish_start_date as publish_4_0_0_, + board0_.reg_date as reg_date5_0_0_, + board0_.reply_contents as reply_co6_0_0_, + board0_.title as title7_0_0_, + board0_.top_yn as top_yn8_0_0_, + board0_.user_id as user_id10_0_0_, + boardtype1_.id as id1_7_1_, + boardtype1_.board_name as board_na2_7_1_, + boardtype1_.reg_date as reg_date3_7_1_, + boardtype1_.update_date as update_d4_7_1_, + boardtype1_.using_yn as using_yn5_7_1_, + user2_.id as id1_12_2_, + user2_.email as email2_12_2_, + user2_.lock_yn as lock_yn3_12_2_, + user2_.password as password4_12_2_, + user2_.phone as phone5_12_2_, + user2_.reg_date as reg_date6_12_2_, + user2_.status as status7_12_2_, + user2_.update_date as update_d8_12_2_, + user2_.user_name as user_nam9_12_2_ + from + board board0_ + left outer join + board_type boardtype1_ + on board0_.board_type_id=boardtype1_.id + left outer join + user user2_ + on board0_.user_id=user2_.id + where + board0_.id=? +2021-03-21 23:47:37.119 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [8] +2021-03-21 23:47:37.120 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_7_1_] : [BIGINT]) - [4] +2021-03-21 23:47:37.121 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_2_] : [BIGINT]) - [1] +2021-03-21 23:47:37.121 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_ty9_0_0_] : [BIGINT]) - [4] +2021-03-21 23:47:37.122 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([content2_0_0_] : [CLOB]) - [문의 내용1] +2021-03-21 23:47:37.122 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_3_0_0_] : [DATE]) - [null] +2021-03-21 23:47:37.122 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_4_0_0_] : [DATE]) - [null] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date5_0_0_] : [TIMESTAMP]) - [2021-03-21T23:41:00.421146] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reply_co6_0_0_] : [CLOB]) - [답변입니다.] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_0_0_] : [VARCHAR]) - [문의제목1] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([top_yn8_0_0_] : [BOOLEAN]) - [false] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_id10_0_0_] : [BIGINT]) - [1] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_na2_7_1_] : [VARCHAR]) - [문의게시판] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_7_1_] : [TIMESTAMP]) - [2021-03-21T23:41:00.419144] +2021-03-21 23:47:37.123 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d4_7_1_] : [TIMESTAMP]) - [null] +2021-03-21 23:47:37.124 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([using_yn5_7_1_] : [BOOLEAN]) - [true] +2021-03-21 23:47:37.124 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_2_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-21 23:47:37.124 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_2_] : [BOOLEAN]) - [false] +2021-03-21 23:47:37.124 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_2_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-21 23:47:37.124 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_2_] : [VARCHAR]) - [010-1234-1234] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_2_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_2_] : [VARCHAR]) - [USING] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_2_] : [TIMESTAMP]) - [null] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_2_] : [VARCHAR]) - [kim] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardCommentList#8] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardHitsList#8] +2021-03-21 23:47:37.125 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardLikeList#8] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.BoardType.boardList#4] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-21 23:47:37.126 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-21 23:47:37.127 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-21 23:47:37.127 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-21 23:47:37.127 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-21 23:47:37.127 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-21 23:47:37.127 TRACE 14712 --- [http-nio-8080-exec-4] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-21 23:47:37.129 DEBUG 14712 --- [http-nio-8080-exec-4] 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_ + where + mailtempla0_.template_id=? +2021-03-21 23:47:37.130 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [BOARD_REPLY] +2021-03-21 23:47:37.130 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [3] +2021-03-21 23:47:37.130 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}

답변

{BOARD_REPLY_CONTENTS}
] +2021-03-21 23:47:37.131 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-21T23:41:00.429582] +2021-03-21 23:47:37.131 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] +2021-03-21 23:47:37.131 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] +2021-03-21 23:47:37.131 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [BOARD_REPLY] +2021-03-21 23:47:37.131 TRACE 14712 --- [http-nio-8080-exec-4] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님이 글에 답변이 작성되었습니다.] +2021-03-21 23:47:40.162 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:47:40.163 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:47:40.163 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:47:40.164 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:47:40.164 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-21 23:47:40.164 INFO 14712 --- [http-nio-8080-exec-4] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:48:18.870 INFO 12348 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 12348 (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-21 23:48:18.875 INFO 12348 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:48:20.161 INFO 12348 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:48:20.445 INFO 12348 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 274 ms. Found 16 JPA repository interfaces. +2021-03-21 23:48:21.258 INFO 12348 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:48:21.268 INFO 12348 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:48:21.268 INFO 12348 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:48:21.435 INFO 12348 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:48:21.436 INFO 12348 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2477 ms +2021-03-21 23:48:21.490 INFO 12348 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:48:21.617 INFO 12348 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:48:21.623 INFO 12348 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:48:21.799 INFO 12348 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:48:21.850 INFO 12348 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:48:21.978 INFO 12348 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:48:22.014 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@52aa7742 +2021-03-21 23:48:22.014 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@52aa7742 +2021-03-21 23:48:22.015 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@52aa7742 +2021-03-21 23:48:22.015 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@35c8be21 +2021-03-21 23:48:22.016 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@615b5480 +2021-03-21 23:48:22.017 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@3b218c74 +2021-03-21 23:48:22.019 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@375084c9 +2021-03-21 23:48:22.019 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@375084c9 +2021-03-21 23:48:22.019 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@375084c9 +2021-03-21 23:48:22.020 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@4e67cfe1 +2021-03-21 23:48:22.020 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@4e67cfe1 +2021-03-21 23:48:22.020 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@4e67cfe1 +2021-03-21 23:48:22.021 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3dc39459 +2021-03-21 23:48:22.022 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3dc39459 +2021-03-21 23:48:22.022 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@3dc39459 +2021-03-21 23:48:22.023 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@36551e97 +2021-03-21 23:48:22.023 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@36551e97 +2021-03-21 23:48:22.024 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@36551e97 +2021-03-21 23:48:22.025 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4ae280da +2021-03-21 23:48:22.026 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4ae280da +2021-03-21 23:48:22.026 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@4ae280da +2021-03-21 23:48:22.028 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@421ead7e +2021-03-21 23:48:22.028 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@421ead7e +2021-03-21 23:48:22.028 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@421ead7e +2021-03-21 23:48:22.029 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@3a4e524 +2021-03-21 23:48:22.030 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@3a4e524 +2021-03-21 23:48:22.030 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@3a4e524 +2021-03-21 23:48:22.032 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@30159886 +2021-03-21 23:48:22.032 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@30159886 +2021-03-21 23:48:22.044 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@19eea77c +2021-03-21 23:48:22.044 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@19eea77c +2021-03-21 23:48:22.046 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@69feb4d9 +2021-03-21 23:48:22.046 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@69feb4d9 +2021-03-21 23:48:22.047 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@30036a18 +2021-03-21 23:48:22.048 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@28b458e6 +2021-03-21 23:48:22.050 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@401788d5 +2021-03-21 23:48:22.050 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@401788d5 +2021-03-21 23:48:22.052 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@2b01c689 +2021-03-21 23:48:22.052 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@2b01c689 +2021-03-21 23:48:22.054 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@439f2d87 +2021-03-21 23:48:22.054 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@439f2d87 +2021-03-21 23:48:22.056 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@60b616c8 +2021-03-21 23:48:22.056 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@60b616c8 +2021-03-21 23:48:22.059 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@4f64d9cb +2021-03-21 23:48:22.059 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@4f64d9cb +2021-03-21 23:48:22.061 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@ee96866 +2021-03-21 23:48:22.062 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@ee96866 +2021-03-21 23:48:22.063 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@3855d9b2 +2021-03-21 23:48:22.063 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@3855d9b2 +2021-03-21 23:48:22.066 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@532dacf5 +2021-03-21 23:48:22.066 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@532dacf5 +2021-03-21 23:48:22.068 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@beabd6b +2021-03-21 23:48:22.069 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@beabd6b +2021-03-21 23:48:22.071 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@27bcb4ad +2021-03-21 23:48:22.071 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@27bcb4ad +2021-03-21 23:48:22.073 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@5e68be2 +2021-03-21 23:48:22.073 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@5e68be2 +2021-03-21 23:48:22.077 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@6bd92538 +2021-03-21 23:48:22.078 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@6bd92538 +2021-03-21 23:48:22.079 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@6bd92538 +2021-03-21 23:48:22.081 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@4567fb2b +2021-03-21 23:48:22.084 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@1ccc1026 +2021-03-21 23:48:22.084 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@1ccc1026 +2021-03-21 23:48:22.084 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@1ccc1026 +2021-03-21 23:48:22.085 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@722787b5 +2021-03-21 23:48:22.086 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@2ccc9681 +2021-03-21 23:48:22.087 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@1b31af02 +2021-03-21 23:48:22.088 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@1b31af02 +2021-03-21 23:48:22.089 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@6e807e2 +2021-03-21 23:48:22.090 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@6e807e2 +2021-03-21 23:48:22.092 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@19d53ab4 +2021-03-21 23:48:22.093 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@19d53ab4 +2021-03-21 23:48:22.094 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@652e345 +2021-03-21 23:48:22.095 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@652e345 +2021-03-21 23:48:22.097 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@1af677f8 +2021-03-21 23:48:22.097 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@1af677f8 +2021-03-21 23:48:22.099 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@34cd65ac +2021-03-21 23:48:22.100 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@3a45afd4 +2021-03-21 23:48:22.101 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@3a45afd4 +2021-03-21 23:48:22.101 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@3a45afd4 +2021-03-21 23:48:22.102 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@2035d65b +2021-03-21 23:48:22.103 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@2035d65b +2021-03-21 23:48:22.103 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@2035d65b +2021-03-21 23:48:22.105 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@394fb736 +2021-03-21 23:48:22.105 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@1689527c +2021-03-21 23:48:22.106 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@e01a26b +2021-03-21 23:48:22.107 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@e01a26b +2021-03-21 23:48:22.107 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@e01a26b +2021-03-21 23:48:22.110 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@2049e582 +2021-03-21 23:48:22.110 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@2049e582 +2021-03-21 23:48:22.110 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@2049e582 +2021-03-21 23:48:22.112 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@365cef67 +2021-03-21 23:48:22.112 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@52d7ab79 +2021-03-21 23:48:22.114 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@5d601832 +2021-03-21 23:48:22.115 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@5d601832 +2021-03-21 23:48:22.115 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@c0c8f96 +2021-03-21 23:48:22.117 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@1e120628 +2021-03-21 23:48:22.117 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@1e120628 +2021-03-21 23:48:22.119 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@78479f2b +2021-03-21 23:48:22.119 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@78479f2b +2021-03-21 23:48:22.120 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@49653791 +2021-03-21 23:48:22.121 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@1b0e031b +2021-03-21 23:48:22.125 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@7e18ced7 +2021-03-21 23:48:22.130 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@6a5dd083 +2021-03-21 23:48:22.130 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@6a5dd083 +2021-03-21 23:48:22.131 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@582dcd35 +2021-03-21 23:48:22.131 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@1e6bd263 +2021-03-21 23:48:22.131 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@394a6d2b +2021-03-21 23:48:22.131 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@635ff2a5 +2021-03-21 23:48:22.133 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@55adcf9e +2021-03-21 23:48:22.133 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@1515f782 +2021-03-21 23:48:22.133 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@7f5ce33e +2021-03-21 23:48:22.133 DEBUG 12348 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@638afcaa +2021-03-21 23:48:22.208 INFO 12348 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:48:22.319 DEBUG 12348 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6f0c45f4] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@45571cfc] +2021-03-21 23:48:22.585 DEBUG 12348 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:48:22.587 DEBUG 12348 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:48:22.747 DEBUG 12348 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@6f0c45f4] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@5cf2f5d6] +2021-03-21 23:48:23.326 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:48:23.330 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:48:23.330 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:48:23.330 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:48:23.331 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:48:23.332 DEBUG 12348 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:48:23.336 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.355 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.357 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.358 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.360 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.362 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:48:23.365 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.366 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:48:23.368 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:48:23.369 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:48:23.371 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.374 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.381 DEBUG 12348 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:48:23.384 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.387 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:48:23.389 DEBUG 12348 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:48:23.391 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:48:23.397 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:48:23.408 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:48:23.421 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:48:23.423 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:48:23.425 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:48:23.427 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:48:23.430 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:48:23.432 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:48:23.433 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:48:23.435 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:48:23.437 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:48:23.439 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:48:23.441 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:48:23.443 DEBUG 12348 --- [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-21 23:48:23.445 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:48:23.448 DEBUG 12348 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:48:23.454 INFO 12348 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:48:23.464 TRACE 12348 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@5cf2f5d6] for TypeConfiguration +2021-03-21 23:48:23.467 INFO 12348 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:48:24.701 WARN 12348 --- [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-21 23:48:25.038 INFO 12348 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: 2d433803-1a83-4b64-b2bf-5eb3c93fe7e2 + +2021-03-21 23:48:25.130 INFO 12348 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@31885b4b, org.springframework.security.web.context.SecurityContextPersistenceFilter@6889e714, org.springframework.security.web.header.HeaderWriterFilter@26caf4b6, org.springframework.security.web.authentication.logout.LogoutFilter@79735611, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3b7dd173, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@51b2b3e6, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@638e8194, org.springframework.security.web.session.SessionManagementFilter@3b39bee2, org.springframework.security.web.access.ExceptionTranslationFilter@28b16193, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3b62c51e] +2021-03-21 23:48:25.326 INFO 12348 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:48:25.764 INFO 12348 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:48:25.778 INFO 12348 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 7.74 seconds (JVM running for 9.739) +2021-03-21 23:48:34.087 INFO 12348 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-21 23:48:34.089 INFO 12348 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-21 23:48:34.092 INFO 12348 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 3 ms +2021-03-21 23:48:34.149 INFO 12348 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:48:34.149 INFO 12348 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:48:34.149 INFO 12348 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:48:34.149 INFO 12348 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:48:34.174 INFO 12348 --- [http-nio-8080-exec-1] c.e.r.common.GlobalExceptionHandler : null +2021-03-21 23:48:41.680 INFO 12348 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:48:41.680 INFO 12348 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:48:41.680 INFO 12348 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:48:41.680 INFO 12348 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:48:41.681 INFO 12348 --- [http-nio-8080-exec-3] c.e.r.common.GlobalExceptionHandler : null +2021-03-21 23:50:26.399 INFO 19184 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 19184 (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-21 23:50:26.406 INFO 19184 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:50:27.822 INFO 19184 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:50:28.182 INFO 19184 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 344 ms. Found 16 JPA repository interfaces. +2021-03-21 23:50:29.327 INFO 19184 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:50:29.340 INFO 19184 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:50:29.341 INFO 19184 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:50:29.524 INFO 19184 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:50:29.525 INFO 19184 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3014 ms +2021-03-21 23:50:29.589 INFO 19184 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:50:29.747 INFO 19184 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:50:29.757 INFO 19184 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:50:30.019 INFO 19184 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:50:30.075 INFO 19184 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:50:30.280 INFO 19184 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:50:30.329 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@56da96b3 +2021-03-21 23:50:30.329 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@56da96b3 +2021-03-21 23:50:30.329 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@56da96b3 +2021-03-21 23:50:30.330 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@5e37fb82 +2021-03-21 23:50:30.331 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@4aa3fc9a +2021-03-21 23:50:30.332 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@52d96367 +2021-03-21 23:50:30.335 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@19105a87 +2021-03-21 23:50:30.335 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@19105a87 +2021-03-21 23:50:30.335 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@19105a87 +2021-03-21 23:50:30.337 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@28bf82d9 +2021-03-21 23:50:30.337 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@28bf82d9 +2021-03-21 23:50:30.337 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@28bf82d9 +2021-03-21 23:50:30.340 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3f3c8b60 +2021-03-21 23:50:30.340 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@3f3c8b60 +2021-03-21 23:50:30.340 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@3f3c8b60 +2021-03-21 23:50:30.342 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@25a290ee +2021-03-21 23:50:30.342 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@25a290ee +2021-03-21 23:50:30.343 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@25a290ee +2021-03-21 23:50:30.344 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@36463b09 +2021-03-21 23:50:30.345 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@36463b09 +2021-03-21 23:50:30.345 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@36463b09 +2021-03-21 23:50:30.346 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@54f2df29 +2021-03-21 23:50:30.347 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@54f2df29 +2021-03-21 23:50:30.347 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@54f2df29 +2021-03-21 23:50:30.348 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4c56644f +2021-03-21 23:50:30.350 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@4c56644f +2021-03-21 23:50:30.350 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@4c56644f +2021-03-21 23:50:30.351 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@7c5f29c6 +2021-03-21 23:50:30.351 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@7c5f29c6 +2021-03-21 23:50:30.353 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@68fc9167 +2021-03-21 23:50:30.353 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@68fc9167 +2021-03-21 23:50:30.355 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@3a5e2525 +2021-03-21 23:50:30.355 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@3a5e2525 +2021-03-21 23:50:30.355 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@7103745 +2021-03-21 23:50:30.356 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@dd737ea +2021-03-21 23:50:30.357 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@64910b2d +2021-03-21 23:50:30.357 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@64910b2d +2021-03-21 23:50:30.359 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@5b7308aa +2021-03-21 23:50:30.360 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@5b7308aa +2021-03-21 23:50:30.362 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@50778bde +2021-03-21 23:50:30.362 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@50778bde +2021-03-21 23:50:30.365 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@68d6f48e +2021-03-21 23:50:30.365 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@68d6f48e +2021-03-21 23:50:30.366 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@3c17bd0b +2021-03-21 23:50:30.367 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@3c17bd0b +2021-03-21 23:50:30.368 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@2ba024cb +2021-03-21 23:50:30.369 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@2ba024cb +2021-03-21 23:50:30.371 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@505d2bac +2021-03-21 23:50:30.371 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@505d2bac +2021-03-21 23:50:30.373 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@45dde6ac +2021-03-21 23:50:30.374 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@45dde6ac +2021-03-21 23:50:30.377 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@710ae6a7 +2021-03-21 23:50:30.378 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@710ae6a7 +2021-03-21 23:50:30.381 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@639cb788 +2021-03-21 23:50:30.381 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@639cb788 +2021-03-21 23:50:30.383 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@3b770d07 +2021-03-21 23:50:30.383 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@3b770d07 +2021-03-21 23:50:30.386 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@5d7f1e59 +2021-03-21 23:50:30.386 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@5d7f1e59 +2021-03-21 23:50:30.386 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@5d7f1e59 +2021-03-21 23:50:30.389 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@68e47e7 +2021-03-21 23:50:30.391 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@3a588b5f +2021-03-21 23:50:30.391 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@3a588b5f +2021-03-21 23:50:30.391 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@3a588b5f +2021-03-21 23:50:30.393 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@7185e611 +2021-03-21 23:50:30.395 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@56e5c8fb +2021-03-21 23:50:30.397 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@a3b858f +2021-03-21 23:50:30.397 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@a3b858f +2021-03-21 23:50:30.399 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@2347b7af +2021-03-21 23:50:30.399 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@2347b7af +2021-03-21 23:50:30.400 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@66f2ec1c +2021-03-21 23:50:30.401 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@66f2ec1c +2021-03-21 23:50:30.402 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@2026fbff +2021-03-21 23:50:30.402 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@2026fbff +2021-03-21 23:50:30.404 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@38bc5ac0 +2021-03-21 23:50:30.404 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@38bc5ac0 +2021-03-21 23:50:30.405 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@749baa0c +2021-03-21 23:50:30.407 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@7cc1f72c +2021-03-21 23:50:30.407 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@7cc1f72c +2021-03-21 23:50:30.407 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@7cc1f72c +2021-03-21 23:50:30.410 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@819fb19 +2021-03-21 23:50:30.410 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@819fb19 +2021-03-21 23:50:30.411 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@819fb19 +2021-03-21 23:50:30.413 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@12365bd8 +2021-03-21 23:50:30.414 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@30fbc23 +2021-03-21 23:50:30.416 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@5f883d90 +2021-03-21 23:50:30.416 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@5f883d90 +2021-03-21 23:50:30.416 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@5f883d90 +2021-03-21 23:50:30.417 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@3eac2e8a +2021-03-21 23:50:30.418 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@3eac2e8a +2021-03-21 23:50:30.418 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@3eac2e8a +2021-03-21 23:50:30.419 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@4fd80300 +2021-03-21 23:50:30.419 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@63f2e0b +2021-03-21 23:50:30.421 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@14b95942 +2021-03-21 23:50:30.422 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@14b95942 +2021-03-21 23:50:30.422 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@46ea78f0 +2021-03-21 23:50:30.424 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@64dfb31d +2021-03-21 23:50:30.424 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@64dfb31d +2021-03-21 23:50:30.427 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@738a815c +2021-03-21 23:50:30.427 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@738a815c +2021-03-21 23:50:30.429 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@762405bf +2021-03-21 23:50:30.430 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@9d99851 +2021-03-21 23:50:30.433 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@77ce88c4 +2021-03-21 23:50:30.437 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@108b121f +2021-03-21 23:50:30.438 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@108b121f +2021-03-21 23:50:30.439 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@4300e240 +2021-03-21 23:50:30.439 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@5f409872 +2021-03-21 23:50:30.439 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@547aaa32 +2021-03-21 23:50:30.440 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@472c9f88 +2021-03-21 23:50:30.440 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@37a67cf +2021-03-21 23:50:30.440 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@5822ecda +2021-03-21 23:50:30.440 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@5908e6d6 +2021-03-21 23:50:30.440 DEBUG 19184 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@7afbf2a0 +2021-03-21 23:50:30.523 INFO 19184 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:50:30.627 DEBUG 19184 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7f012923] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@601f264d] +2021-03-21 23:50:30.875 DEBUG 19184 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:50:30.877 DEBUG 19184 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:50:31.057 DEBUG 19184 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@7f012923] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@590dea35] +2021-03-21 23:50:31.736 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:50:31.740 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:50:31.741 DEBUG 19184 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:50:31.744 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.757 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.758 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.758 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.759 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.761 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:50:31.762 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.763 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:50:31.764 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:50:31.765 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:50:31.767 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.768 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.771 DEBUG 19184 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:50:31.773 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.774 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:50:31.775 DEBUG 19184 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:50:31.776 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:50:31.780 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:50:31.789 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:50:31.791 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:50:31.792 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:50:31.794 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:50:31.795 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:50:31.797 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:50:31.798 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:50:31.800 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:50:31.801 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:50:31.802 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:50:31.804 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:50:31.805 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:50:31.806 DEBUG 19184 --- [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-21 23:50:31.808 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:50:31.809 DEBUG 19184 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:50:31.815 INFO 19184 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:50:31.825 TRACE 19184 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@590dea35] for TypeConfiguration +2021-03-21 23:50:31.828 INFO 19184 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:50:33.411 WARN 19184 --- [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-21 23:50:33.919 INFO 19184 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: d140ff46-e343-4ca5-a35e-39646fc02f18 + +2021-03-21 23:50:34.086 INFO 19184 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4f0f56f5, org.springframework.security.web.context.SecurityContextPersistenceFilter@60655642, org.springframework.security.web.header.HeaderWriterFilter@73d7e7aa, org.springframework.security.web.authentication.logout.LogoutFilter@4b74a4d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@772589ed, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@52df6d0f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6edb093f, org.springframework.security.web.session.SessionManagementFilter@48b744fd, org.springframework.security.web.access.ExceptionTranslationFilter@46f597f1, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1a23136f] +2021-03-21 23:50:34.468 INFO 19184 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:50:36.792 INFO 19184 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:50:36.816 INFO 19184 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 11.271 seconds (JVM running for 14.41) +2021-03-21 23:51:45.402 INFO 19184 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-21 23:51:45.404 INFO 19184 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-21 23:51:45.405 INFO 19184 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms +2021-03-21 23:51:50.780 INFO 19184 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:51:51.327 INFO 19184 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:51:51.864 INFO 19184 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:51:53.475 INFO 19184 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:52:02.670 INFO 19184 --- [http-nio-8080-exec-1] c.e.r.common.GlobalExceptionHandler : null +2021-03-21 23:54:22.870 WARN 19184 --- [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=46s729ms802µs800ns). +2021-03-21 23:54:24.180 INFO 19184 --- [SpringContextShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor' +2021-03-21 23:54:24.185 INFO 19184 --- [SpringContextShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:54:24.185 INFO 19184 --- [SpringContextShutdownHook] .SchemaDropperImpl$DelayedDropActionImpl : HHH000477: Starting delayed evictData of schema as part of SessionFactory shut-down' +2021-03-21 23:54:24.186 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:54:24.194 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:54:24.194 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:54:24.195 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:54:24.196 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:54:24.197 DEBUG 19184 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:54:24.197 TRACE 19184 --- [SpringContextShutdownHook] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@590dea35] for TypeConfiguration +2021-03-21 23:54:24.197 DEBUG 19184 --- [SpringContextShutdownHook] o.h.type.spi.TypeConfiguration$Scope : Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@3d89efea] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@590dea35] +2021-03-21 23:54:24.202 INFO 19184 --- [SpringContextShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... +2021-03-21 23:54:24.208 INFO 19184 --- [SpringContextShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. +2021-03-21 23:55:35.335 INFO 13816 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 13816 (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-21 23:55:35.341 INFO 13816 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:55:36.690 INFO 13816 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:55:36.984 INFO 13816 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 280 ms. Found 16 JPA repository interfaces. +2021-03-21 23:55:38.380 INFO 13816 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:55:38.403 INFO 13816 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:55:38.404 INFO 13816 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:55:38.658 INFO 13816 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:55:38.658 INFO 13816 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 3249 ms +2021-03-21 23:55:38.767 INFO 13816 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:55:39.025 INFO 13816 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:55:39.034 INFO 13816 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:55:39.406 INFO 13816 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:55:39.517 INFO 13816 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:55:39.754 INFO 13816 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:55:39.799 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@4357524b +2021-03-21 23:55:39.800 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@4357524b +2021-03-21 23:55:39.800 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@4357524b +2021-03-21 23:55:39.801 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@5f3b84bd +2021-03-21 23:55:39.802 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@166b11e +2021-03-21 23:55:39.804 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@3bc20984 +2021-03-21 23:55:39.807 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@6735f210 +2021-03-21 23:55:39.807 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@6735f210 +2021-03-21 23:55:39.807 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@6735f210 +2021-03-21 23:55:39.810 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@9281d19 +2021-03-21 23:55:39.810 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@9281d19 +2021-03-21 23:55:39.810 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@9281d19 +2021-03-21 23:55:39.812 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@216f01 +2021-03-21 23:55:39.813 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@216f01 +2021-03-21 23:55:39.813 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@216f01 +2021-03-21 23:55:39.815 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@541d4d9f +2021-03-21 23:55:39.815 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@541d4d9f +2021-03-21 23:55:39.816 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@541d4d9f +2021-03-21 23:55:39.818 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4217bce6 +2021-03-21 23:55:39.818 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@4217bce6 +2021-03-21 23:55:39.818 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@4217bce6 +2021-03-21 23:55:39.820 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@2e45a357 +2021-03-21 23:55:39.820 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@2e45a357 +2021-03-21 23:55:39.820 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@2e45a357 +2021-03-21 23:55:39.822 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@730bea0 +2021-03-21 23:55:39.823 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@730bea0 +2021-03-21 23:55:39.823 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@730bea0 +2021-03-21 23:55:39.825 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@5873f3f0 +2021-03-21 23:55:39.825 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@5873f3f0 +2021-03-21 23:55:39.827 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@713999c2 +2021-03-21 23:55:39.827 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@713999c2 +2021-03-21 23:55:39.828 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@1d2d8846 +2021-03-21 23:55:39.829 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@1d2d8846 +2021-03-21 23:55:39.830 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@2dcd0e41 +2021-03-21 23:55:39.830 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@1cba0321 +2021-03-21 23:55:39.832 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@1883871b +2021-03-21 23:55:39.832 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@1883871b +2021-03-21 23:55:39.833 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@5d1a859c +2021-03-21 23:55:39.833 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@5d1a859c +2021-03-21 23:55:39.835 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@1689527c +2021-03-21 23:55:39.836 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@1689527c +2021-03-21 23:55:39.838 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@e01a26b +2021-03-21 23:55:39.838 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@e01a26b +2021-03-21 23:55:39.840 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@2049e582 +2021-03-21 23:55:39.841 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@2049e582 +2021-03-21 23:55:39.843 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@3214bad +2021-03-21 23:55:39.843 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@3214bad +2021-03-21 23:55:39.845 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@4c5406b +2021-03-21 23:55:39.845 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@4c5406b +2021-03-21 23:55:39.847 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@5170bc02 +2021-03-21 23:55:39.847 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@5170bc02 +2021-03-21 23:55:39.850 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@2d4fb0d8 +2021-03-21 23:55:39.851 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@2d4fb0d8 +2021-03-21 23:55:39.853 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@7b377a53 +2021-03-21 23:55:39.853 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@7b377a53 +2021-03-21 23:55:39.855 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@563317c1 +2021-03-21 23:55:39.856 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@563317c1 +2021-03-21 23:55:39.858 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@221b77d7 +2021-03-21 23:55:39.858 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@221b77d7 +2021-03-21 23:55:39.859 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@221b77d7 +2021-03-21 23:55:39.860 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@1753475d +2021-03-21 23:55:39.863 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@1e6bd263 +2021-03-21 23:55:39.863 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@1e6bd263 +2021-03-21 23:55:39.863 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@1e6bd263 +2021-03-21 23:55:39.864 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@58601e7a +2021-03-21 23:55:39.866 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@43e8f1c +2021-03-21 23:55:39.868 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@a457c2b +2021-03-21 23:55:39.868 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@a457c2b +2021-03-21 23:55:39.869 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@6a7a1a0d +2021-03-21 23:55:39.870 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@6a7a1a0d +2021-03-21 23:55:39.871 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@40dd552c +2021-03-21 23:55:39.871 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@40dd552c +2021-03-21 23:55:39.873 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@4e50ae56 +2021-03-21 23:55:39.873 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@4e50ae56 +2021-03-21 23:55:39.874 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@3af36922 +2021-03-21 23:55:39.874 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@3af36922 +2021-03-21 23:55:39.876 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@5fb7ab9c +2021-03-21 23:55:39.878 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@74500e4f +2021-03-21 23:55:39.878 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@74500e4f +2021-03-21 23:55:39.878 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@74500e4f +2021-03-21 23:55:39.879 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@54a056e4 +2021-03-21 23:55:39.880 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@54a056e4 +2021-03-21 23:55:39.880 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@54a056e4 +2021-03-21 23:55:39.881 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@78065fcd +2021-03-21 23:55:39.883 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@19b9f903 +2021-03-21 23:55:39.884 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@6d4a05f7 +2021-03-21 23:55:39.884 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@6d4a05f7 +2021-03-21 23:55:39.884 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@6d4a05f7 +2021-03-21 23:55:39.886 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@7cdb7fc +2021-03-21 23:55:39.886 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@7cdb7fc +2021-03-21 23:55:39.886 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@7cdb7fc +2021-03-21 23:55:39.887 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@7d8b66d9 +2021-03-21 23:55:39.888 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@647fb583 +2021-03-21 23:55:39.891 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@1a785fd5 +2021-03-21 23:55:39.891 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@1a785fd5 +2021-03-21 23:55:39.892 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@75ad30c1 +2021-03-21 23:55:39.895 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@8f39224 +2021-03-21 23:55:39.896 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@8f39224 +2021-03-21 23:55:39.897 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@49ced9c7 +2021-03-21 23:55:39.899 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@49ced9c7 +2021-03-21 23:55:39.899 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@5a85b4e6 +2021-03-21 23:55:39.899 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@2b9aeedb +2021-03-21 23:55:39.902 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@3d512652 +2021-03-21 23:55:39.908 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@7c2b6acb +2021-03-21 23:55:39.908 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@7c2b6acb +2021-03-21 23:55:39.908 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@1b3a9ef4 +2021-03-21 23:55:39.908 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@7a1371 +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@6c6928c +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@3c28181b +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@73aaec54 +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@239b98cb +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@117b2cc6 +2021-03-21 23:55:39.909 DEBUG 13816 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@6def0632 +2021-03-21 23:55:40.004 INFO 13816 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:55:40.115 DEBUG 13816 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@55053f81] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@1fee4278] +2021-03-21 23:55:40.461 DEBUG 13816 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:55:40.464 DEBUG 13816 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:55:40.758 DEBUG 13816 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@55053f81] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@4ef31221] +2021-03-21 23:55:41.566 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:55:41.569 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:55:41.569 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:55:41.569 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:55:41.570 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:55:41.570 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:55:41.570 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:55:41.570 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:55:41.570 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:55:41.571 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:55:41.571 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:55:41.571 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:55:41.571 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:55:41.572 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:55:41.572 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:55:41.572 DEBUG 13816 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:55:41.576 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.592 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.593 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.594 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.596 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.597 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:55:41.599 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.600 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:55:41.602 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:55:41.603 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:55:41.605 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.606 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.610 DEBUG 13816 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:55:41.611 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.613 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:55:41.614 DEBUG 13816 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:55:41.616 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:55:41.621 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:55:41.634 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:55:41.636 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:55:41.638 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:55:41.640 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:55:41.642 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:55:41.644 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:55:41.646 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:55:41.648 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:55:41.649 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:55:41.650 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:55:41.652 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:55:41.654 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:55:41.656 DEBUG 13816 --- [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-21 23:55:41.658 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:55:41.660 DEBUG 13816 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:55:41.668 INFO 13816 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:55:41.681 TRACE 13816 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@4ef31221] for TypeConfiguration +2021-03-21 23:55:41.687 INFO 13816 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:55:43.273 WARN 13816 --- [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-21 23:55:43.692 INFO 13816 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: de773c6c-12f1-4396-b5e5-7d84c7cfc71c + +2021-03-21 23:55:43.808 INFO 13816 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6e161cea, org.springframework.security.web.context.SecurityContextPersistenceFilter@3203a4ae, org.springframework.security.web.header.HeaderWriterFilter@35599228, org.springframework.security.web.authentication.logout.LogoutFilter@511ad0dd, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@25fc2b8f, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3c130cb2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@673e1cf2, org.springframework.security.web.session.SessionManagementFilter@69f55ea, org.springframework.security.web.access.ExceptionTranslationFilter@267309f7, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@1a5c0b8] +2021-03-21 23:55:44.021 INFO 13816 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:55:45.864 INFO 13816 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:55:45.891 INFO 13816 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 11.382 seconds (JVM running for 13.288) +2021-03-21 23:58:22.402 INFO 13816 --- [SpringContextShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor' +2021-03-21 23:58:22.410 INFO 13816 --- [SpringContextShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:58:22.411 INFO 13816 --- [SpringContextShutdownHook] .SchemaDropperImpl$DelayedDropActionImpl : HHH000477: Starting delayed evictData of schema as part of SessionFactory shut-down' +2021-03-21 23:58:22.412 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:58:22.423 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:58:22.423 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:58:22.423 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:58:22.423 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:58:22.424 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:58:22.424 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:58:22.424 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:58:22.425 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:58:22.425 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:58:22.426 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:58:22.426 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:58:22.426 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:58:22.427 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:58:22.427 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:58:22.427 DEBUG 13816 --- [SpringContextShutdownHook] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:58:22.428 TRACE 13816 --- [SpringContextShutdownHook] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryClosed from [org.hibernate.internal.SessionFactoryImpl@4ef31221] for TypeConfiguration +2021-03-21 23:58:22.428 DEBUG 13816 --- [SpringContextShutdownHook] o.h.type.spi.TypeConfiguration$Scope : Un-scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration$Scope@5afd6ef2] from SessionFactory [org.hibernate.internal.SessionFactoryImpl@4ef31221] +2021-03-21 23:58:22.434 INFO 13816 --- [SpringContextShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... +2021-03-21 23:58:22.442 INFO 13816 --- [SpringContextShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. +2021-03-21 23:58:31.889 INFO 3600 --- [main] c.e.r.RestControllerApplication : Starting RestControllerApplication using Java 11.0.8 on DESKTOP-8F3AB8V with PID 3600 (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-21 23:58:31.894 INFO 3600 --- [main] c.e.r.RestControllerApplication : No active profile set, falling back to default profiles: default +2021-03-21 23:58:32.982 INFO 3600 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode. +2021-03-21 23:58:33.204 INFO 3600 --- [main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 211 ms. Found 16 JPA repository interfaces. +2021-03-21 23:58:33.929 INFO 3600 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http) +2021-03-21 23:58:33.940 INFO 3600 --- [main] o.apache.catalina.core.StandardService : Starting service [Tomcat] +2021-03-21 23:58:33.941 INFO 3600 --- [main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-03-21 23:58:34.117 INFO 3600 --- [main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext +2021-03-21 23:58:34.117 INFO 3600 --- [main] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2167 ms +2021-03-21 23:58:34.175 INFO 3600 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... +2021-03-21 23:58:34.294 INFO 3600 --- [main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. +2021-03-21 23:58:34.299 INFO 3600 --- [main] o.s.b.a.h2.H2ConsoleAutoConfiguration : H2 console available at '/h2-console'. Database available at 'jdbc:h2:mem:testDb' +2021-03-21 23:58:34.493 INFO 3600 --- [main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default] +2021-03-21 23:58:34.547 INFO 3600 --- [main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.27.Final +2021-03-21 23:58:34.682 INFO 3600 --- [main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.2.Final} +2021-03-21 23:58:34.728 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@34d9df9f +2021-03-21 23:58:34.728 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration boolean -> org.hibernate.type.BooleanType@34d9df9f +2021-03-21 23:58:34.729 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Boolean -> org.hibernate.type.BooleanType@34d9df9f +2021-03-21 23:58:34.730 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration numeric_boolean -> org.hibernate.type.NumericBooleanType@1192c925 +2021-03-21 23:58:34.730 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration true_false -> org.hibernate.type.TrueFalseType@6537ac +2021-03-21 23:58:34.732 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration yes_no -> org.hibernate.type.YesNoType@6bb4cc0e +2021-03-21 23:58:34.734 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@b01cb8d +2021-03-21 23:58:34.734 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte -> org.hibernate.type.ByteType@b01cb8d +2021-03-21 23:58:34.734 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Byte -> org.hibernate.type.ByteType@b01cb8d +2021-03-21 23:58:34.736 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration character -> org.hibernate.type.CharacterType@179ee36b +2021-03-21 23:58:34.736 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char -> org.hibernate.type.CharacterType@179ee36b +2021-03-21 23:58:34.736 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Character -> org.hibernate.type.CharacterType@179ee36b +2021-03-21 23:58:34.738 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@197ce367 +2021-03-21 23:58:34.738 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration short -> org.hibernate.type.ShortType@197ce367 +2021-03-21 23:58:34.738 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Short -> org.hibernate.type.ShortType@197ce367 +2021-03-21 23:58:34.739 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration integer -> org.hibernate.type.IntegerType@3b6c2be6 +2021-03-21 23:58:34.740 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration int -> org.hibernate.type.IntegerType@3b6c2be6 +2021-03-21 23:58:34.740 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Integer -> org.hibernate.type.IntegerType@3b6c2be6 +2021-03-21 23:58:34.742 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@1ad1c363 +2021-03-21 23:58:34.743 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration long -> org.hibernate.type.LongType@1ad1c363 +2021-03-21 23:58:34.743 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Long -> org.hibernate.type.LongType@1ad1c363 +2021-03-21 23:58:34.745 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5f6494c0 +2021-03-21 23:58:34.747 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration float -> org.hibernate.type.FloatType@5f6494c0 +2021-03-21 23:58:34.747 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Float -> org.hibernate.type.FloatType@5f6494c0 +2021-03-21 23:58:34.748 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@38c761e9 +2021-03-21 23:58:34.749 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration double -> org.hibernate.type.DoubleType@38c761e9 +2021-03-21 23:58:34.749 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Double -> org.hibernate.type.DoubleType@38c761e9 +2021-03-21 23:58:34.751 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_decimal -> org.hibernate.type.BigDecimalType@10131289 +2021-03-21 23:58:34.753 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigDecimal -> org.hibernate.type.BigDecimalType@10131289 +2021-03-21 23:58:34.754 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration big_integer -> org.hibernate.type.BigIntegerType@10fb4575 +2021-03-21 23:58:34.754 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.math.BigInteger -> org.hibernate.type.BigIntegerType@10fb4575 +2021-03-21 23:58:34.756 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration string -> org.hibernate.type.StringType@2cc75b25 +2021-03-21 23:58:34.756 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.String -> org.hibernate.type.StringType@2cc75b25 +2021-03-21 23:58:34.757 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nstring -> org.hibernate.type.StringNVarcharType@3ccb12d +2021-03-21 23:58:34.759 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ncharacter -> org.hibernate.type.CharacterNCharType@773eca84 +2021-03-21 23:58:34.761 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration url -> org.hibernate.type.UrlType@5f56424d +2021-03-21 23:58:34.761 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.net.URL -> org.hibernate.type.UrlType@5f56424d +2021-03-21 23:58:34.763 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Duration -> org.hibernate.type.DurationType@701c223a +2021-03-21 23:58:34.763 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Duration -> org.hibernate.type.DurationType@701c223a +2021-03-21 23:58:34.765 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Instant -> org.hibernate.type.InstantType@44dd0d38 +2021-03-21 23:58:34.766 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.Instant -> org.hibernate.type.InstantType@44dd0d38 +2021-03-21 23:58:34.768 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDateTime -> org.hibernate.type.LocalDateTimeType@2bdab835 +2021-03-21 23:58:34.768 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDateTime -> org.hibernate.type.LocalDateTimeType@2bdab835 +2021-03-21 23:58:34.770 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalDate -> org.hibernate.type.LocalDateType@1815577b +2021-03-21 23:58:34.770 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalDate -> org.hibernate.type.LocalDateType@1815577b +2021-03-21 23:58:34.771 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration LocalTime -> org.hibernate.type.LocalTimeType@1f949ab9 +2021-03-21 23:58:34.771 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.LocalTime -> org.hibernate.type.LocalTimeType@1f949ab9 +2021-03-21 23:58:34.773 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@3a209918 +2021-03-21 23:58:34.773 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetDateTime -> org.hibernate.type.OffsetDateTimeType@3a209918 +2021-03-21 23:58:34.775 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration OffsetTime -> org.hibernate.type.OffsetTimeType@587f4f63 +2021-03-21 23:58:34.775 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.OffsetTime -> org.hibernate.type.OffsetTimeType@587f4f63 +2021-03-21 23:58:34.778 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@7523d5a1 +2021-03-21 23:58:34.778 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.time.ZonedDateTime -> org.hibernate.type.ZonedDateTimeType@7523d5a1 +2021-03-21 23:58:34.779 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration date -> org.hibernate.type.DateType@64dc86c6 +2021-03-21 23:58:34.779 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Date -> org.hibernate.type.DateType@64dc86c6 +2021-03-21 23:58:34.781 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration time -> org.hibernate.type.TimeType@3bc20984 +2021-03-21 23:58:34.781 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Time -> org.hibernate.type.TimeType@3bc20984 +2021-03-21 23:58:34.782 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timestamp -> org.hibernate.type.TimestampType@6735f210 +2021-03-21 23:58:34.782 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Timestamp -> org.hibernate.type.TimestampType@6735f210 +2021-03-21 23:58:34.783 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Date -> org.hibernate.type.TimestampType@6735f210 +2021-03-21 23:58:34.784 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration dbtimestamp -> org.hibernate.type.DbTimestampType@173511ff +2021-03-21 23:58:34.785 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar -> org.hibernate.type.CalendarType@216f01 +2021-03-21 23:58:34.785 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Calendar -> org.hibernate.type.CalendarType@216f01 +2021-03-21 23:58:34.785 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.GregorianCalendar -> org.hibernate.type.CalendarType@216f01 +2021-03-21 23:58:34.786 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_date -> org.hibernate.type.CalendarDateType@541d4d9f +2021-03-21 23:58:34.787 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration calendar_time -> org.hibernate.type.CalendarTimeType@4217bce6 +2021-03-21 23:58:34.788 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration locale -> org.hibernate.type.LocaleType@2e45a357 +2021-03-21 23:58:34.788 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Locale -> org.hibernate.type.LocaleType@2e45a357 +2021-03-21 23:58:34.789 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration currency -> org.hibernate.type.CurrencyType@730bea0 +2021-03-21 23:58:34.789 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.Currency -> org.hibernate.type.CurrencyType@730bea0 +2021-03-21 23:58:34.790 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration timezone -> org.hibernate.type.TimeZoneType@5873f3f0 +2021-03-21 23:58:34.790 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.TimeZone -> org.hibernate.type.TimeZoneType@5873f3f0 +2021-03-21 23:58:34.791 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration class -> org.hibernate.type.ClassType@713999c2 +2021-03-21 23:58:34.791 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Class -> org.hibernate.type.ClassType@713999c2 +2021-03-21 23:58:34.792 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-binary -> org.hibernate.type.UUIDBinaryType@1d2d8846 +2021-03-21 23:58:34.792 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.util.UUID -> org.hibernate.type.UUIDBinaryType@1d2d8846 +2021-03-21 23:58:34.793 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration uuid-char -> org.hibernate.type.UUIDCharType@2dcd0e41 +2021-03-21 23:58:34.794 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration binary -> org.hibernate.type.BinaryType@f2fb225 +2021-03-21 23:58:34.794 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration byte[] -> org.hibernate.type.BinaryType@f2fb225 +2021-03-21 23:58:34.794 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [B -> org.hibernate.type.BinaryType@f2fb225 +2021-03-21 23:58:34.795 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-binary -> org.hibernate.type.WrapperBinaryType@539316bb +2021-03-21 23:58:34.796 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Byte[] -> org.hibernate.type.WrapperBinaryType@539316bb +2021-03-21 23:58:34.796 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Byte; -> org.hibernate.type.WrapperBinaryType@539316bb +2021-03-21 23:58:34.797 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration row_version -> org.hibernate.type.RowVersionType@52bba91a +2021-03-21 23:58:34.798 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration image -> org.hibernate.type.ImageType@13004dd8 +2021-03-21 23:58:34.799 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration characters -> org.hibernate.type.CharArrayType@314b7945 +2021-03-21 23:58:34.799 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration char[] -> org.hibernate.type.CharArrayType@314b7945 +2021-03-21 23:58:34.799 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [C -> org.hibernate.type.CharArrayType@314b7945 +2021-03-21 23:58:34.801 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration wrapper-characters -> org.hibernate.type.CharacterArrayType@59d6642a +2021-03-21 23:58:34.801 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration [Ljava.lang.Character; -> org.hibernate.type.CharacterArrayType@59d6642a +2021-03-21 23:58:34.801 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration Character[] -> org.hibernate.type.CharacterArrayType@59d6642a +2021-03-21 23:58:34.801 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration text -> org.hibernate.type.TextType@3214bad +2021-03-21 23:58:34.802 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration ntext -> org.hibernate.type.NTextType@b7d2d51 +2021-03-21 23:58:34.804 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration blob -> org.hibernate.type.BlobType@5170bc02 +2021-03-21 23:58:34.804 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Blob -> org.hibernate.type.BlobType@5170bc02 +2021-03-21 23:58:34.805 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_blob -> org.hibernate.type.MaterializedBlobType@6a96d639 +2021-03-21 23:58:34.806 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration clob -> org.hibernate.type.ClobType@23e2c1ca +2021-03-21 23:58:34.807 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.Clob -> org.hibernate.type.ClobType@23e2c1ca +2021-03-21 23:58:34.808 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration nclob -> org.hibernate.type.NClobType@d9f5fce +2021-03-21 23:58:34.808 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.sql.NClob -> org.hibernate.type.NClobType@d9f5fce +2021-03-21 23:58:34.810 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_clob -> org.hibernate.type.MaterializedClobType@7b377a53 +2021-03-21 23:58:34.810 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration materialized_nclob -> org.hibernate.type.MaterializedNClobType@25214797 +2021-03-21 23:58:34.811 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration serializable -> org.hibernate.type.SerializableType@25e8e59 +2021-03-21 23:58:34.814 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration object -> org.hibernate.type.ObjectType@5c70d7f0 +2021-03-21 23:58:34.814 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration java.lang.Object -> org.hibernate.type.ObjectType@5c70d7f0 +2021-03-21 23:58:34.815 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_date -> org.hibernate.type.AdaptedImmutableType@635ff2a5 +2021-03-21 23:58:34.815 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_time -> org.hibernate.type.AdaptedImmutableType@55adcf9e +2021-03-21 23:58:34.815 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_timestamp -> org.hibernate.type.AdaptedImmutableType@1515f782 +2021-03-21 23:58:34.816 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_dbtimestamp -> org.hibernate.type.AdaptedImmutableType@7f5ce33e +2021-03-21 23:58:34.816 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar -> org.hibernate.type.AdaptedImmutableType@638afcaa +2021-03-21 23:58:34.816 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_calendar_date -> org.hibernate.type.AdaptedImmutableType@58601e7a +2021-03-21 23:58:34.816 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_binary -> org.hibernate.type.AdaptedImmutableType@62735b13 +2021-03-21 23:58:34.816 DEBUG 3600 --- [main] org.hibernate.type.BasicTypeRegistry : Adding type registration imm_serializable -> org.hibernate.type.AdaptedImmutableType@7aae1170 +2021-03-21 23:58:34.885 INFO 3600 --- [main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.H2Dialect +2021-03-21 23:58:34.979 DEBUG 3600 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1b475663] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@1669931a] +2021-03-21 23:58:35.207 DEBUG 3600 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.model.UserPointType +2021-03-21 23:58:35.209 DEBUG 3600 --- [main] org.hibernate.type.EnumType : Using NAMED-based conversion for Enum com.example.restcontroller.user.entity.UserStatus +2021-03-21 23:58:35.372 DEBUG 3600 --- [main] o.h.type.spi.TypeConfiguration$Scope : Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@1b475663] to SessionFactoryImpl [org.hibernate.internal.SessionFactoryImpl@60a4e619] +2021-03-21 23:58:35.915 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board CASCADE +2021-03-21 23:58:35.918 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_bookmark CASCADE +2021-03-21 23:58:35.918 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_comment CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_hits CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_like CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_report CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_scrap CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists board_type CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists logs CASCADE +2021-03-21 23:58:35.919 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists mail_template CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists notice CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists notice_like CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists user CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists user_interest CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists user_login_history CASCADE +2021-03-21 23:58:35.920 DEBUG 3600 --- [main] org.hibernate.SQL : + + drop table if exists user_point CASCADE +2021-03-21 23:58:35.923 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board ( + id bigint generated by default as identity, + content clob, + publish_end_date date, + publish_start_date date, + reg_date timestamp, + reply_contents clob, + title varchar(255), + top_yn boolean not null, + board_type_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.947 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_bookmark ( + id bigint generated by default as identity, + board_id bigint, + board_title varchar(255), + board_type_id bigint, + board_url varchar(255), + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.948 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_comment ( + id bigint generated by default as identity, + comments varchar(255), + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.949 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_hits ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.950 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_like ( + id bigint generated by default as identity, + reg_date timestamp, + board_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.951 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_report ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_user_id bigint, + comments varchar(255), + reg_date timestamp, + user_email varchar(255), + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:58:35.952 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_scrap ( + id bigint generated by default as identity, + board_contents varchar(255), + board_id bigint, + board_reg_date timestamp, + board_title varchar(255), + board_type_id bigint, + board_user_id bigint, + reg_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.954 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table board_type ( + id bigint generated by default as identity, + board_name varchar(255), + reg_date timestamp, + update_date timestamp, + using_yn boolean not null, + primary key (id) + ) +2021-03-21 23:58:35.955 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table logs ( + id bigint generated by default as identity, + reg_date timestamp, + text clob, + primary key (id) + ) +2021-03-21 23:58:35.956 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table mail_template ( + id bigint generated by default as identity, + contents varchar(255), + reg_date timestamp, + send_email varchar(255), + send_user_name varchar(255), + template_id varchar(255), + title varchar(255), + primary key (id) + ) +2021-03-21 23:58:35.957 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table notice ( + id bigint generated by default as identity, + contents varchar(255), + delete_date timestamp, + deleted boolean default false not null, + hits integer default 0, + likes integer default 0, + reg_date timestamp, + title varchar(255), + update_date timestamp, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.958 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table notice_like ( + id bigint generated by default as identity, + notice_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.960 DEBUG 3600 --- [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, + phone varchar(255) not null, + reg_date timestamp, + status varchar(255), + update_date timestamp, + user_name varchar(255) not null, + primary key (id) + ) +2021-03-21 23:58:35.961 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table user_interest ( + id bigint generated by default as identity, + reg_date timestamp, + interest_user_id bigint, + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.962 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table user_login_history ( + id bigint generated by default as identity, + email varchar(255), + ip_addr varchar(255), + login_date timestamp, + user_id bigint, + user_name varchar(255), + primary key (id) + ) +2021-03-21 23:58:35.963 DEBUG 3600 --- [main] org.hibernate.SQL : + + create table user_point ( + id bigint generated by default as identity, + point integer not null, + reg_date timestamp, + user_point_type varchar(255), + user_id bigint, + primary key (id) + ) +2021-03-21 23:58:35.964 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table user + add constraint UK_ob8kqyqqgmefl0aco34akdtpe unique (email) +2021-03-21 23:58:35.968 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board + add constraint FK59iw5qt320s9l10vbxey9as5p + foreign key (board_type_id) + references board_type +2021-03-21 23:58:35.975 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board + add constraint FKfyf1fchnby6hndhlfaidier1r + foreign key (user_id) + references user +2021-03-21 23:58:35.976 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_bookmark + add constraint FK_BOARD_BOOKMARK_USER_ID + foreign key (user_id) + references user +2021-03-21 23:58:35.978 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_BOARD_ID + foreign key (board_id) + references board +2021-03-21 23:58:35.979 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_comment + add constraint FK_BOARD_COMMENT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:58:35.980 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FK8ptvjkodqmonm762uo9v8ocha + foreign key (board_id) + references board +2021-03-21 23:58:35.982 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_hits + add constraint FKjkkt5o4uyvoo26g31v71pww4w + foreign key (user_id) + references user +2021-03-21 23:58:35.983 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKk7rxm8vl1ptqqhwdj2sjmlpvq + foreign key (board_id) + references board +2021-03-21 23:58:35.984 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_like + add constraint FKpf406vodal6lejcg4fkwcjr2o + foreign key (user_id) + references user +2021-03-21 23:58:35.986 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table board_scrap + add constraint FK_BOARD_SCRAP_USER_ID + foreign key (user_id) + references user +2021-03-21 23:58:35.987 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table notice + add constraint FKcvf4mh5se36inrxn7xlh2brfv + foreign key (user_id) + references user +2021-03-21 23:58:35.989 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKm2krt4h5dcpydbb4tlvxyr27 + foreign key (notice_id) + references notice +2021-03-21 23:58:35.990 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table notice_like + add constraint FKnplmervi6gx6dqj4vpnq7jn6g + foreign key (user_id) + references user +2021-03-21 23:58:35.992 DEBUG 3600 --- [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-21 23:58:35.994 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table user_interest + add constraint FK_USER_INTEREST_USER_ID + foreign key (user_id) + references user +2021-03-21 23:58:35.995 DEBUG 3600 --- [main] org.hibernate.SQL : + + alter table user_point + add constraint FK_USER_POINT_USER_ID + foreign key (user_id) + references user +2021-03-21 23:58:36.000 INFO 3600 --- [main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform] +2021-03-21 23:58:36.009 TRACE 3600 --- [main] o.h.type.spi.TypeConfiguration$Scope : Handling #sessionFactoryCreated from [org.hibernate.internal.SessionFactoryImpl@60a4e619] for TypeConfiguration +2021-03-21 23:58:36.011 INFO 3600 --- [main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default' +2021-03-21 23:58:37.195 WARN 3600 --- [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-21 23:58:37.614 INFO 3600 --- [main] .s.s.UserDetailsServiceAutoConfiguration : + +Using generated security password: a0a9310e-c248-4cca-b049-ec1510d177dc + +2021-03-21 23:58:37.744 INFO 3600 --- [main] o.s.s.web.DefaultSecurityFilterChain : Will secure any request with [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@445f6aa7, org.springframework.security.web.context.SecurityContextPersistenceFilter@77185a2, org.springframework.security.web.header.HeaderWriterFilter@14af57c3, org.springframework.security.web.authentication.logout.LogoutFilter@7db679, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7d381eae, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6ae5e1cf, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6a4238ff, org.springframework.security.web.session.SessionManagementFilter@11a29c0, org.springframework.security.web.access.ExceptionTranslationFilter@30d944d8, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@a2ca681] +2021-03-21 23:58:37.948 INFO 3600 --- [main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' +2021-03-21 23:58:38.287 INFO 3600 --- [main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path '' +2021-03-21 23:58:38.301 INFO 3600 --- [main] c.e.r.RestControllerApplication : Started RestControllerApplication in 7.006 seconds (JVM running for 8.696) +2021-03-21 23:58:46.710 INFO 3600 --- [http-nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-03-21 23:58:46.711 INFO 3600 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' +2021-03-21 23:58:46.715 INFO 3600 --- [http-nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 4 ms +2021-03-21 23:58:46.778 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:58:46.778 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:58:46.779 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:58:46.779 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:58:46.798 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.c.interceptor.CommonInterceptor : null +2021-03-21 23:58:46.804 INFO 3600 --- [http-nio-8080-exec-1] c.e.r.common.GlobalExceptionHandler : com.example.restcontroller.common.exception.AuthFailException인증정보가 정확하지 않습니다 +2021-03-21 23:58:53.937 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:58:53.938 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:58:53.938 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:58:53.938 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:58:53.938 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.c.interceptor.CommonInterceptor : null +2021-03-21 23:58:53.939 INFO 3600 --- [http-nio-8080-exec-2] c.e.r.common.GlobalExceptionHandler : com.example.restcontroller.common.exception.AuthFailException인증정보가 정확하지 않습니다 +2021-03-21 23:59:14.980 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:59:14.980 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:59:14.980 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:59:14.980 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.c.interceptor.CommonInterceptor : POST /api/login +2021-03-21 23:59:15.129 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:15.129 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:59:15.129 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:15.149 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.149 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:59:15.149 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.197 DEBUG 3600 --- [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_ + from + user user0_ + where + user0_.email=? +2021-03-21 23:59:15.204 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [haerong22@gmail.com] +2021-03-21 23:59:15.208 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_] : [BIGINT]) - [1] +2021-03-21 23:59:15.214 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-21 23:59:15.215 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_] : [BOOLEAN]) - [false] +2021-03-21 23:59:15.215 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-21 23:59:15.215 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_] : [VARCHAR]) - [010-1234-1234] +2021-03-21 23:59:15.216 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-21 23:59:15.217 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_] : [VARCHAR]) - [USING] +2021-03-21 23:59:15.217 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_] : [TIMESTAMP]) - [null] +2021-03-21 23:59:15.217 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_] : [VARCHAR]) - [kim] +2021-03-21 23:59:15.235 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-21 23:59:15.235 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-21 23:59:15.235 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-21 23:59:15.236 TRACE 3600 --- [http-nio-8080-exec-3] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-21 23:59:15.387 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.387 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:59:15.388 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.423 DEBUG 3600 --- [http-nio-8080-exec-3] org.hibernate.SQL : + insert + into + logs + (id, reg_date, text) + values + (null, ?, ?) +2021-03-21 23:59:15.424 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [TIMESTAMP] - [2021-03-21T23:59:15.391488] +2021-03-21 23:59:15.424 TRACE 3600 --- [http-nio-8080-exec-3] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [CLOB] - [ +함수명 : class com.example.restcontroller.user.service.UserServiceImpl.login +매개변수 : UserLogin(email=haerong22@gmail.com, password=1234) +리턴값 : User{id=1, email='haerong22@gmail.com', userName='kim', password='$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', phone='010-1234-1234', status=USING, lockYn=false, regDate=2021-02-20T00:50:11, updateDate=null}] +2021-03-21 23:59:15.434 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : +함수명 : class com.example.restcontroller.user.service.UserServiceImpl.login +매개변수 : UserLogin(email=haerong22@gmail.com, password=1234) +리턴값 : User{id=1, email='haerong22@gmail.com', userName='kim', password='$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', phone='010-1234-1234', status=USING, lockYn=false, regDate=2021-02-20T00:50:11, updateDate=null} +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:59:15.435 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:15.512 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:15.512 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-21 23:59:15.512 INFO 3600 --- [http-nio-8080-exec-3] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:26.973 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:59:26.973 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.c.interceptor.CommonInterceptor : [interceptor] - preHandler start +2021-03-21 23:59:26.973 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.c.interceptor.CommonInterceptor : ######################################### +2021-03-21 23:59:26.973 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.c.interceptor.CommonInterceptor : POST /api/admin/board/8/reply +2021-03-21 23:59:27.002 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:27.002 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 전! +2021-03-21 23:59:27.002 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:27.006 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:27.006 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : 서비스 호출 전! +2021-03-21 23:59:27.006 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:27.026 DEBUG 3600 --- [http-nio-8080-exec-5] org.hibernate.SQL : + select + board0_.id as id1_0_0_, + board0_.board_type_id as board_ty9_0_0_, + board0_.content as content2_0_0_, + board0_.publish_end_date as publish_3_0_0_, + board0_.publish_start_date as publish_4_0_0_, + board0_.reg_date as reg_date5_0_0_, + board0_.reply_contents as reply_co6_0_0_, + board0_.title as title7_0_0_, + board0_.top_yn as top_yn8_0_0_, + board0_.user_id as user_id10_0_0_, + boardtype1_.id as id1_7_1_, + boardtype1_.board_name as board_na2_7_1_, + boardtype1_.reg_date as reg_date3_7_1_, + boardtype1_.update_date as update_d4_7_1_, + boardtype1_.using_yn as using_yn5_7_1_, + user2_.id as id1_12_2_, + user2_.email as email2_12_2_, + user2_.lock_yn as lock_yn3_12_2_, + user2_.password as password4_12_2_, + user2_.phone as phone5_12_2_, + user2_.reg_date as reg_date6_12_2_, + user2_.status as status7_12_2_, + user2_.update_date as update_d8_12_2_, + user2_.user_name as user_nam9_12_2_ + from + board board0_ + left outer join + board_type boardtype1_ + on board0_.board_type_id=boardtype1_.id + left outer join + user user2_ + on board0_.user_id=user2_.id + where + board0_.id=? +2021-03-21 23:59:27.029 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [8] +2021-03-21 23:59:27.035 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_7_1_] : [BIGINT]) - [4] +2021-03-21 23:59:27.035 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_12_2_] : [BIGINT]) - [1] +2021-03-21 23:59:27.035 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_ty9_0_0_] : [BIGINT]) - [4] +2021-03-21 23:59:27.039 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([content2_0_0_] : [CLOB]) - [문의 내용1] +2021-03-21 23:59:27.040 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_3_0_0_] : [DATE]) - [null] +2021-03-21 23:59:27.040 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([publish_4_0_0_] : [DATE]) - [null] +2021-03-21 23:59:27.041 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date5_0_0_] : [TIMESTAMP]) - [2021-03-21T23:58:36.085508] +2021-03-21 23:59:27.041 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reply_co6_0_0_] : [CLOB]) - [null] +2021-03-21 23:59:27.041 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_0_0_] : [VARCHAR]) - [문의제목1] +2021-03-21 23:59:27.041 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([top_yn8_0_0_] : [BOOLEAN]) - [false] +2021-03-21 23:59:27.041 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_id10_0_0_] : [BIGINT]) - [1] +2021-03-21 23:59:27.042 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([board_na2_7_1_] : [VARCHAR]) - [문의게시판] +2021-03-21 23:59:27.042 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_7_1_] : [TIMESTAMP]) - [2021-03-21T23:58:36.084625] +2021-03-21 23:59:27.042 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d4_7_1_] : [TIMESTAMP]) - [null] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([using_yn5_7_1_] : [BOOLEAN]) - [true] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([email2_12_2_] : [VARCHAR]) - [haerong22@gmail.com] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([lock_yn3_12_2_] : [BOOLEAN]) - [false] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([password4_12_2_] : [VARCHAR]) - [$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([phone5_12_2_] : [VARCHAR]) - [010-1234-1234] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date6_12_2_] : [TIMESTAMP]) - [2021-02-20T00:50:11] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([status7_12_2_] : [VARCHAR]) - [USING] +2021-03-21 23:59:27.043 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([update_d8_12_2_] : [TIMESTAMP]) - [null] +2021-03-21 23:59:27.044 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([user_nam9_12_2_] : [VARCHAR]) - [kim] +2021-03-21 23:59:27.044 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardCommentList#8] +2021-03-21 23:59:27.044 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardHitsList#8] +2021-03-21 23:59:27.044 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.Board.boardLikeList#8] +2021-03-21 23:59:27.045 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.board.entity.BoardType.boardList#4] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardBookmarkList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardCommentList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardHitsList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardLikeList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.boardScrapList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeLikeList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.noticeList#1] +2021-03-21 23:59:27.046 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userInterestList#1] +2021-03-21 23:59:27.047 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userList#1] +2021-03-21 23:59:27.047 TRACE 3600 --- [http-nio-8080-exec-5] org.hibernate.type.CollectionType : Created collection wrapper: [com.example.restcontroller.user.entity.User.userPointList#1] +2021-03-21 23:59:27.068 DEBUG 3600 --- [http-nio-8080-exec-5] 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_ + where + mailtempla0_.template_id=? +2021-03-21 23:59:27.068 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [VARCHAR] - [BOARD_REPLY] +2021-03-21 23:59:27.068 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([id1_9_] : [BIGINT]) - [3] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([contents2_9_] : [VARCHAR]) - [

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}

답변

{BOARD_REPLY_CONTENTS}
] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([reg_date3_9_] : [TIMESTAMP]) - [2021-03-21T23:58:36.090530] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_ema4_9_] : [VARCHAR]) - [test.email.12588@gmail.com] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([send_use5_9_] : [VARCHAR]) - [관리자] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([template6_9_] : [VARCHAR]) - [BOARD_REPLY] +2021-03-21 23:59:27.069 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicExtractor : extracted value ([title7_9_] : [VARCHAR]) - [{USER_NAME}님이 글에 답변이 작성되었습니다.] +2021-03-21 23:59:31.129 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:31.130 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : 서비스 호출 후! +2021-03-21 23:59:31.130 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.LoginLogger : ############################################################ +2021-03-21 23:59:31.135 DEBUG 3600 --- [http-nio-8080-exec-5] org.hibernate.SQL : + update + board + set + board_type_id=?, + content=?, + publish_end_date=?, + publish_start_date=?, + reg_date=?, + reply_contents=?, + title=?, + top_yn=?, + user_id=? + where + id=? +2021-03-21 23:59:31.141 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [4] +2021-03-21 23:59:31.141 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [CLOB] - [문의 내용1] +2021-03-21 23:59:31.141 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [3] as [DATE] - [null] +2021-03-21 23:59:31.142 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [4] as [DATE] - [null] +2021-03-21 23:59:31.142 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [5] as [TIMESTAMP] - [2021-03-21T23:58:36.085508] +2021-03-21 23:59:31.142 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [6] as [CLOB] - [답변입니다.] +2021-03-21 23:59:31.142 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [7] as [VARCHAR] - [문의제목1] +2021-03-21 23:59:31.142 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [8] as [BOOLEAN] - [false] +2021-03-21 23:59:31.143 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [9] as [BIGINT] - [1] +2021-03-21 23:59:31.143 TRACE 3600 --- [http-nio-8080-exec-5] o.h.type.descriptor.sql.BasicBinder : binding parameter [10] as [BIGINT] - [8] +2021-03-21 23:59:31.148 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : ############################################################ +2021-03-21 23:59:31.148 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : 컨트롤러 호출 후! +2021-03-21 23:59:31.148 INFO 3600 --- [http-nio-8080-exec-5] c.e.r.common.aop.BoardLogger : ############################################################ diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/controller/ApiAdminBoardController.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/controller/ApiAdminBoardController.java index eabcc524..d414ef84 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/board/controller/ApiAdminBoardController.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/controller/ApiAdminBoardController.java @@ -1,12 +1,13 @@ package com.example.restcontroller.board.controller; import com.example.restcontroller.board.entity.BoardReport; +import com.example.restcontroller.board.model.BoardReplyInput; +import com.example.restcontroller.board.model.ServiceResult; import com.example.restcontroller.board.service.BoardService; import com.example.restcontroller.common.model.ResponseResult; import lombok.RequiredArgsConstructor; import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import java.util.List; @@ -20,4 +21,12 @@ public class ApiAdminBoardController { List list = boardService.boardReportList(); return ResponseResult.success(list); } + + @PostMapping("/api/admin/board/{id}/reply") + public ResponseEntity chapter5_5(@PathVariable Long id, + @RequestBody BoardReplyInput boardReplyInput) { + + ServiceResult result = boardService.replyBoard(id, boardReplyInput); + return ResponseResult.result(result); + } } \ No newline at end of file diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/entity/Board.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/entity/Board.java index 97e8c1ca..f3b0c506 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/board/entity/Board.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/entity/Board.java @@ -23,6 +23,21 @@ public class Board { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; + private String title; + + @Lob + private String content; + + private boolean topYn; + + @Lob + private String replyContents; + + private LocalDateTime regDate; + + private LocalDate publishStartDate; + private LocalDate publishEndDate; + @ManyToOne @JoinColumn private User user; @@ -43,17 +58,6 @@ public class Board { @OneToMany(mappedBy = "board") List boardCommentList = new ArrayList<>(); - private String title; - - private String content; - - private boolean topYn; - - private LocalDateTime regDate; - - private LocalDate publishStartDate; - private LocalDate publishEndDate; - @Override public String toString() { return "Board{" + diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/exception/BoardNotFoundException.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/exception/BoardNotFoundException.java new file mode 100644 index 00000000..43a86486 --- /dev/null +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/exception/BoardNotFoundException.java @@ -0,0 +1,7 @@ +package com.example.restcontroller.board.exception; + +public class BoardNotFoundException extends RuntimeException { + public BoardNotFoundException(String s) { + super(s); + } +} diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/model/BoardReplyInput.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/model/BoardReplyInput.java new file mode 100644 index 00000000..0ba0ac70 --- /dev/null +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/model/BoardReplyInput.java @@ -0,0 +1,15 @@ +package com.example.restcontroller.board.model; + +import lombok.AllArgsConstructor; +import lombok.Builder; +import lombok.Data; +import lombok.NoArgsConstructor; + +@Data +@Builder +@AllArgsConstructor +@NoArgsConstructor +public class BoardReplyInput { + + private String replyContents; +} diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardService.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardService.java index 27aef5cb..24acff27 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardService.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardService.java @@ -53,4 +53,6 @@ public interface BoardService { List list(); ServiceResult add(String email, BoardInput boardInput); + + ServiceResult replyBoard(Long id, BoardReplyInput boardReplyInput); } diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardServiceImpl.java b/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardServiceImpl.java index 1ae37d62..22d9d5fd 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardServiceImpl.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/board/service/BoardServiceImpl.java @@ -1,6 +1,7 @@ package com.example.restcontroller.board.service; import com.example.restcontroller.board.entity.*; +import com.example.restcontroller.board.exception.BoardNotFoundException; import com.example.restcontroller.board.exception.BoardTypeNotFoundException; import com.example.restcontroller.board.model.*; import com.example.restcontroller.board.repository.*; @@ -424,4 +425,29 @@ public class BoardServiceImpl implements BoardService { return ServiceResult.success(); } + + @Transactional + @Override + public ServiceResult replyBoard(Long id, BoardReplyInput boardReplyInput) { + Board boardEntity = boardRepository.findById(id). + orElseThrow(() -> new BoardNotFoundException("게시글이 존재하지 않습니다.")); + + boardEntity.setReplyContents(boardReplyInput.getReplyContents()); + + // 메일전송 + Optional optionalMailTemplate = mailTemplateRepository.findByTemplateId("BOARD_REPLY"); + optionalMailTemplate.ifPresent((e) -> { + String fromEmail = e.getSendEmail(); + String fromUserName = e.getSendUserName(); + String title = e.getTitle().replaceAll("\\{USER_NAME\\}", boardEntity.getUser().getUserName()); + String contents = e.getContents().replaceAll("\\{BOARD_TITLE\\}", boardEntity.getTitle()) + .replaceAll("\\{BOARD_CONTENTS\\}", boardEntity.getContent()) + .replaceAll("\\{BOARD_REPLY_CONTENTS\\}", boardEntity.getReplyContents()); + + mailComponent.send(fromEmail, fromUserName, + boardEntity.getUser().getEmail(), boardEntity.getUser().getUserName(), title, contents); + }); + + return ServiceResult.success(); + } } diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/common/GlobalExceptionHandler.java b/rest-controller-practice/src/main/java/com/example/restcontroller/common/GlobalExceptionHandler.java index 374acda8..df0dc061 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/common/GlobalExceptionHandler.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/common/GlobalExceptionHandler.java @@ -1,5 +1,6 @@ package com.example.restcontroller.common; +import com.example.restcontroller.board.exception.BoardNotFoundException; import com.example.restcontroller.board.exception.BoardTypeNotFoundException; import com.example.restcontroller.common.exception.AuthFailException; import com.example.restcontroller.common.exception.BizException; @@ -29,7 +30,8 @@ public class GlobalExceptionHandler { PasswordNotMatchException.class, BoardTypeNotFoundException.class, BizException.class, - AuthFailException.class}) + AuthFailException.class, + BoardNotFoundException.class }) public ResponseEntity badRequest(RuntimeException e) { log.info(e.getClass().getName() + e.getMessage()); return ResponseResult.fail(e.getMessage()); diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/common/interceptor/CommonInterceptor.java b/rest-controller-practice/src/main/java/com/example/restcontroller/common/interceptor/CommonInterceptor.java index 063f7ed4..3b24c0e7 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/common/interceptor/CommonInterceptor.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/common/interceptor/CommonInterceptor.java @@ -30,13 +30,15 @@ public class CommonInterceptor implements HandlerInterceptor { private boolean validJWT(HttpServletRequest request) { - String token = request.getHeader("TOKEN"); - String email = ""; try { + String token = request.getHeader("TOKEN"); email = JWTUtils.getIssuer(token); } catch (JWTVerificationException e) { return false; + } catch (Exception e) { + log.info(e.getMessage()); + return false; } request.setAttribute("email", email); diff --git a/rest-controller-practice/src/main/java/com/example/restcontroller/config/WebMvcConfiguration.java b/rest-controller-practice/src/main/java/com/example/restcontroller/config/WebMvcConfiguration.java index 7263a0ad..63c5ab6e 100644 --- a/rest-controller-practice/src/main/java/com/example/restcontroller/config/WebMvcConfiguration.java +++ b/rest-controller-practice/src/main/java/com/example/restcontroller/config/WebMvcConfiguration.java @@ -11,7 +11,7 @@ public class WebMvcConfiguration implements WebMvcConfigurer { @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(new CommonInterceptor()) - .addPathPatterns("/api/*") + .addPathPatterns("/api/**") .excludePathPatterns("/api/public/*"); } } diff --git a/rest-controller-practice/src/main/resources/data.sql b/rest-controller-practice/src/main/resources/data.sql index d908a94e..23baff24 100644 --- a/rest-controller-practice/src/main/resources/data.sql +++ b/rest-controller-practice/src/main/resources/data.sql @@ -1,7 +1,7 @@ insert into user(email, password, phone, reg_date, user_name, status, lock_yn) values - ('test11@naver.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-1234-1234', '2021-02-20 00:50:11.000000', 'kim', 'USING', 0), + ('haerong22@gmail.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-1234-1234', '2021-02-20 00:50:11.000000', 'kim', 'USING', 0), ('test22@gmail.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4321-1111', '2021-02-25 12:33:16.000000', 'lee', 'USING', 0), ('test33@naver.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-5555-3333', now(), 'hong', 'USING', 0), ('test44@gmail.com', '$2a$10$2ElPbt2mwiAc9IYH3rgJz.YZInXlUd363utdyU0TWfne6Y3vKh8h6', '010-4343-2546', now(), 'park', 'STOP', 0); @@ -37,8 +37,9 @@ values insert into board_type (board_name, reg_date, using_yn) values ('게시판1', now(), 1), - ('게시판2', now(), 0), - ('게시판3', now(), 1); + ('게시판2', now(), 1), + ('게시판3', now(), 0), + ('문의게시판', now(), 1); insert into board (board_type_id, user_id, title, content, reg_date, top_yn) values @@ -48,7 +49,8 @@ values (2, 1, '게시글4', '게시글 내용4', now(), 0), (2, 2, '게시글5', '게시글 내용5', now(), 0), (3, 1, '게시글6', '게시글 내용6', now(), 0), - (3, 3, '게시글7', '게시글 내용7', now(), 0); + (3, 3, '게시글7', '게시글 내용7', now(), 0), + (4, 1, '문의제목1', '문의 내용1', now(), 0); insert into board_comment (comments, reg_date, board_id, user_id) values @@ -59,11 +61,17 @@ values INSERT INTO MAIL_TEMPLATE(TEMPLATE_ID, TITLE, CONTENTS, SEND_EMAIL, SEND_USER_NAME, REG_DATE) VALUES - ('USER_RESET_PASSWORD', - '{USER_NAME}님의 비밀번호 초기화 요청입니다.', - '

{USER_NAME}님 안녕하세요.

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

초기화

', - 'test.email.12588@gmail.com', '관리자', now()), - ('BOARD_ADD', - '{USER_NAME}님이 글을 게시하였습니다.', - '

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}
', - 'test.email.12588@gmail.com', '관리자', now()); \ No newline at end of file + ('USER_RESET_PASSWORD', + '{USER_NAME}님의 비밀번호 초기화 요청입니다.', + '

{USER_NAME}님 안녕하세요.

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

초기화

', + 'test.email.12588@gmail.com', '관리자', now()), + ('BOARD_ADD', + '{USER_NAME}님이 글을 게시하였습니다.', + '

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}
', + 'test.email.12588@gmail.com', '관리자', now()), + ('BOARD_REPLY', + '{USER_NAME}님이 글에 답변이 작성되었습니다.', + '

제목: {BOARD_TITLE}

내용

{BOARD_CONTENTS}

답변

{BOARD_REPLY_CONTENTS}
', + 'test.email.12588@gmail.com', '관리자', now()); + + diff --git a/rest-controller-practice/src/main/resources/mail-template/board_reply.html b/rest-controller-practice/src/main/resources/mail-template/board_reply.html new file mode 100644 index 00000000..cbf337e4 --- /dev/null +++ b/rest-controller-practice/src/main/resources/mail-template/board_reply.html @@ -0,0 +1,20 @@ + + + + + {USER_NAME}님이 글에 답변이 작성되었습니다. + + +
+

제목: {BOARD_TITLE}

+

내용

+
+ {BOARD_CONTENTS} +
+

답변

+
+ {BOARD_REPLY_CONTENTS} +
+
+ + \ No newline at end of file