0% found this document useful (0 votes)
76 views271 pages

Log

Download as txt, pdf, or txt
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 271

.

____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.6.8)

2023-04-16 12:56:16.943 INFO 1453 --- [ main]


c.bhuvnesh.blog.BlogAppApisApplication : Starting BlogAppApisApplication v0.0.1-
SNAPSHOT using Java 17.0.6 on ubuntu-Bhuvigyan with PID 1453
(/gyandir/back_end/blog-app-apis-0.0.1-SNAPSHOT.jar started by root in
/gyandir/back_end)
2023-04-16 12:56:16.949 INFO 1453 --- [ main]
c.bhuvnesh.blog.BlogAppApisApplication : The following 1 profile is active:
"prod"
2023-04-16 12:56:19.738 INFO 1453 ---
[ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring
Data JPA repositories in DEFAULT mode.
2023-04-16 12:56:19.950 INFO 1453 ---
[ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data
repository scanning in 194 ms. Found 7 JPA repository interfaces.
2023-04-16 12:56:22.048 INFO 1453 --- [ main]
o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 5151
(http)
2023-04-16 12:56:22.075 INFO 1453 --- [ main]
o.apache.catalina.core.StandardService : Starting service [Tomcat]
2023-04-16 12:56:22.075 INFO 1453 --- [ main]
org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache
Tomcat/9.0.63]
2023-04-16 12:56:22.297 INFO 1453 --- [ main] o.a.c.c.C.[Tomcat].
[localhost].[/] : Initializing Spring embedded WebApplicationContext
2023-04-16 12:56:22.298 INFO 1453 --- [ main]
w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext:
initialization completed in 5197 ms
2023-04-16 12:56:22.421 WARN 1453 --- [ 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
2023-04-16 12:56:22.847 INFO 1453 --- [ main]
o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing
PersistenceUnitInfo [name: default]
2023-04-16 12:56:22.990 INFO 1453 --- [ main] org.hibernate.Version
: HHH000412: Hibernate ORM core version 5.6.9.Final
2023-04-16 12:56:23.459 INFO 1453 --- [ main]
o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons
Annotations {5.1.2.Final}
2023-04-16 12:56:23.778 INFO 1453 --- [ main]
com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2023-04-16 12:56:24.564 INFO 1453 --- [ main]
com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2023-04-16 12:56:24.585 INFO 1453 --- [ main]
org.hibernate.dialect.Dialect : HHH000400: Using dialect:
org.hibernate.dialect.MySQL8Dialect
2023-04-16 12:56:27.435 INFO 1453 --- [ main]
o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform
implementation:
[org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-04-16 12:56:27.523 INFO 1453 --- [ main]
j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for
persistence unit 'default'
2023-04-16 12:56:28.985 INFO 1453 --- [ main]
o.s.boot.web.servlet.RegistrationBean : Filter CORSFilter was not registered
(possibly already registered?)
2023-04-16 12:56:29.893 DEBUG 1453 ---
[ main] .PrePostAnnotationSecurityMetadataSource :
@org.springframework.security.access.prepost.PreAuthorize("hasRole(\'ADMIN\')")
found on specific method: public org.springframework.http.ResponseEntity
com.bhuvnesh.blog.controllers.UserController.deletUser(java.lang.Integer)
2023-04-16 12:56:29.945 DEBUG 1453 --- [ main]
m.DelegatingMethodSecurityMetadataSource : Caching method
[CacheKey[com.bhuvnesh.blog.controllers.UserController; public
org.springframework.http.ResponseEntity
com.bhuvnesh.blog.controllers.UserController.deletUser(java.lang.Integer)]] with
attributes [[authorize: 'hasRole('ADMIN')', filter: 'null', filterTarget: 'null']]
2023-04-16 12:56:31.886 INFO 1453 --- [ main]
o.s.s.web.DefaultSecurityFilterChain : Will secure any request with
[org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationF
ilter@443a53df,
org.springframework.security.web.context.SecurityContextPersistenceFilter@715f45c6,
org.springframework.security.web.header.HeaderWriterFilter@7bbcf6f0,
org.springframework.web.filter.CorsFilter@6c33da7a,
org.springframework.security.web.authentication.logout.LogoutFilter@64502326,
com.bhuvnesh.blog.security.JwtAuthenticationFilter@631cb129,
org.springframework.security.web.savedrequest.RequestCacheAwareFilter@43245559,
org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter
@76f2dad9,
org.springframework.security.web.authentication.AnonymousAuthenticationFilter@69aab
cb0, org.springframework.security.web.session.SessionManagementFilter@562919fe,
org.springframework.security.web.access.ExceptionTranslationFilter@23ca36d,
org.springframework.security.web.access.intercept.AuthorizationFilter@ce12fbb]
2023-04-16 12:56:32.725 INFO 1453 --- [ main]
o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 5151 (http)
with context path ''
2023-04-16 12:56:34.128 INFO 1453 --- [ main]
c.bhuvnesh.blog.BlogAppApisApplication : Started BlogAppApisApplication in 18.554
seconds (JVM running for 19.94)
Hibernate: select role0_.id as id1_5_0_, role0_.name as name2_5_0_ from role role0_
where role0_.id=?
Hibernate: select role0_.id as id1_5_0_, role0_.name as name2_5_0_ from role role0_
where role0_.id=?
2023-04-16 12:57:23.995 INFO 1453 --- [nio-5151-exec-1] o.a.c.c.C.[Tomcat].
[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-04-16 12:57:23.995 INFO 1453 --- [nio-5151-exec-1]
o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet'
2023-04-16 12:57:23.997 INFO 1453 --- [nio-5151-exec-1]
o.s.web.servlet.DispatcherServlet : Completed initialization in 1 ms
2023-04-16 12:57:24.018 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 12:57:24.018 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 12:57:24.020 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 12:57:24.027 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 12:57:24.027 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 12:57:24.027 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 12:57:24.050 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 12:57:24.052 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 12:57:24.052 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 12:57:24.053 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 12:57:24.054 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-16 12:57:24.056 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 12:57:24.794 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 12:57:24.806 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 12:57:24.813 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 13:21:40.866 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 13:21:40.869 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 13:21:40.871 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 13:21:40.871 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 13:21:41.034 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 13:21:41.896 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 13:21:41.897 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 13:21:41.903 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 13:21:41.904 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-16 13:21:41.938 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 13:21:42.499 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/20
2023-04-16 13:21:42.500 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 13:21:42.508 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 13:21:42.510 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/20
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 13:21:42.553 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 13:21:43.128 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/20?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 13:21:43.128 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 13:21:43.129 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 13:21:43.132 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/20?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 13:21:43.229 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 13:21:43.812 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/20?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 13:21:43.813 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 13:21:43.816 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 13:21:43.816 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/20?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 13:21:43.855 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:12:20.531 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:12:20.537 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:12:20.533 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:12:20.537 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:12:20.539 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:12:20.540 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:12:20.541 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:12:20.542 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:12:20.605 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:12:20.713 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:25.126 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:25.133 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:25.126 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:25.136 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:25.130 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:43:25.136 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:25.137 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:25.137 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-16 14:43:25.138 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:25.138 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:25.139 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:25.139 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:43:25.219 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:43:25.324 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:25.328 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:31.178 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:31.179 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:31.179 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:31.180 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:31.182 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:43:31.182 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:31.182 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:31.183 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-16 14:43:31.185 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/34
2023-04-16 14:43:31.185 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:31.187 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:31.187 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/34
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-16 14:43:31.241 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/34?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 14:43:31.241 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:31.242 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:31.242 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/34?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 14:43:31.246 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:31.246 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:31.246 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:31.246 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:43:31.257 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 14:43:31.292 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-16 14:43:31.323 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:31.329 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:43:31.364 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:37.786 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:43:37.786 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:37.790 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:37.790 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:37.791 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:37.791 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:37.793 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:37.793 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:37.793 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:37.793 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:37.797 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:37.797 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
2023-04-16 14:43:37.814 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:43:37.815 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:43:37.815 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:43:37.815 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:43:37.844 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:43:37.910 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:43:37.939 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:43:37.944 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:19.264 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:19.264 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:48:19.267 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:19.267 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:19.272 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:19.272 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:19.274 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:19.275 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:19.276 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:19.276 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:19.277 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:19.277 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:48:19.353 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:48:19.421 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:19.423 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:25.904 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:48:25.904 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:25.905 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:25.905 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-16 14:48:25.907 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:25.907 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:25.908 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:25.908 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:25.912 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:25.913 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:25.913 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:25.914 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-16 14:48:25.947 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-16 14:48:25.969 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/34?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 14:48:25.969 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:25.970 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:25.970 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/34?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 14:48:25.996 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/34
2023-04-16 14:48:25.996 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:25.997 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:48:26.004 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/34
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:48:26.014 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:48:26.036 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:26.037 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:26.038 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:27.804 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:27.804 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:27.804 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:27.805 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:27.808 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 14:48:27.808 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:27.809 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:27.809 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:48:27.825 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 14:48:27.825 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 14:48:27.826 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 14:48:27.826 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 14:48:27.845 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 14:48:27.919 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 14:48:27.925 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:23:53.108 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 18:23:53.112 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 18:23:53.115 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:23:53.108 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 18:23:53.116 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:23:53.116 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:23:53.116 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 18:23:53.117 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:23:53.117 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 18:23:53.118 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:23:53.118 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:23:53.118 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-16 18:23:53.203 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 18:23:53.245 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:23:53.249 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:40:30.493 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 18:40:30.497 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:30.499 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:40:30.499 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-16 18:40:30.565 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/18?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 18:40:30.565 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:30.566 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 18:40:30.568 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/18?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 18:40:30.595 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 18:40:30.616 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:40:31.191 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-16 18:40:31.191 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:31.194 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:40:31.194 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 18:40:31.233 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:40:31.471 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 18:40:31.471 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:31.471 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:40:31.471 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 18:40:31.562 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:40:31.796 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 18:40:31.797 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:31.797 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:40:31.797 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-16 18:40:31.816 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:40:31.923 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-16 18:40:31.924 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:40:31.925 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:40:31.925 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 18:40:31.939 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:29.515 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /
2023-04-16 18:59:29.522 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:29.537 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:29.538 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /
2023-04-16 18:59:29.540 WARN 1453 --- [nio-5151-exec-3]
o.s.web.servlet.PageNotFound : No mapping for GET /
2023-04-16 18:59:29.542 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:29.552 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 18:59:29.552 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:29.552 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:29.552 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 18:59:29.628 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:43.709 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /sitemap.xml
2023-04-16 18:59:43.709 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:43.711 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:43.711 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /sitemap.xml
2023-04-16 18:59:43.711 WARN 1453 --- [nio-5151-exec-9]
o.s.web.servlet.PageNotFound : No mapping for GET /sitemap.xml
2023-04-16 18:59:43.711 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:43.712 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 18:59:43.712 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:43.712 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:43.712 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 18:59:43.734 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-16 18:59:43.735 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:43.736 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:43.737 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-16 18:59:43.752 WARN 1453 --- [nio-5151-exec-8]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-16 18:59:43.752 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:43.753 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 18:59:43.753 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 18:59:43.756 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 18:59:43.756 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 18:59:43.787 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 18:59:43.788 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:00:11.413 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /
2023-04-16 19:00:11.413 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:00:11.414 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:00:11.416 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /
2023-04-16 19:00:11.418 WARN 1453 --- [nio-5151-exec-6]
o.s.web.servlet.PageNotFound : No mapping for GET /
2023-04-16 19:00:11.419 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:00:11.419 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 19:00:11.419 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:00:11.420 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:00:11.420 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 19:00:11.435 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:00:18.958 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /sitemap.xml
2023-04-16 19:00:18.958 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:00:18.959 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:00:18.959 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /sitemap.xml
2023-04-16 19:00:18.959 WARN 1453 --- [io-5151-exec-10]
o.s.web.servlet.PageNotFound : No mapping for GET /sitemap.xml
2023-04-16 19:00:18.960 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:00:18.960 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 19:00:18.960 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:00:18.960 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:00:18.960 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 19:00:18.963 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:25:27.673 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-16 19:25:27.678 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:25:27.681 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:25:27.681 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 19:25:27.751 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:25:27.772 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 19:25:27.773 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:25:27.773 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:25:27.773 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 19:25:27.853 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:25:27.920 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/18?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 19:25:27.920 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:25:27.922 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:25:27.922 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/18?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 19:25:27.932 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 19:25:28.406 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-16 19:25:28.406 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 19:25:28.407 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 19:25:28.407 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 19:25:28.417 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 20:56:48.742 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 20:56:48.744 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 20:56:48.742 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 20:56:48.744 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 20:56:48.742 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 20:56:48.744 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 20:56:48.747 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 20:56:48.747 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 20:56:48.747 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 20:56:48.748 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 20:56:48.748 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 20:56:48.748 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-16 20:56:48.821 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 20:56:48.891 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 20:56:48.892 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:55.499 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/17?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 21:26:55.500 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:55.502 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:55.502 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/17?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
2023-04-16 21:26:55.591 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:55.617 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/17
2023-04-16 21:26:55.617 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:55.618 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:55.619 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/17
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 21:26:55.636 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:55.795 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/31
2023-04-16 21:26:55.795 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:55.797 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:55.797 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/31
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 21:26:55.831 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:56.161 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/31?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 21:26:56.161 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:56.163 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:56.164 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/31?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 21:26:56.177 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:56.261 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/7
2023-04-16 21:26:56.262 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:56.262 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:56.262 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/7
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 21:26:56.282 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:56.423 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-16 21:26:56.424 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:56.424 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:56.424 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 21:26:56.489 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:56.731 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-16 21:26:56.731 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:56.732 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:56.732 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-16 21:26:56.746 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:56.982 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/7?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 21:26:56.982 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:56.983 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:56.983 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/7?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 21:26:56.991 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:26:57.339 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/7
2023-04-16 21:26:57.339 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:26:57.340 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:26:57.341 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/7
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 21:26:57.349 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:44:29.852 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-16 21:44:29.854 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:44:29.852 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 21:44:29.854 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:44:29.855 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:44:29.855 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-16 21:44:29.856 WARN 1453 --- [nio-5151-exec-8]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-16 21:44:29.856 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:44:29.856 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:44:29.857 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 21:44:29.857 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-16 21:44:29.857 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:44:29.857 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:44:29.857 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-16 21:44:29.878 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 21:44:29.910 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/31?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 21:44:29.910 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:44:29.911 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:44:29.911 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/31?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-16 21:44:29.922 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 21:44:29.965 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 21:44:30.057 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/31
2023-04-16 21:44:30.057 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 21:44:30.058 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 21:44:30.058 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/31
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 21:44:30.085 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:29:30.714 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-16 22:29:30.722 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:29:30.725 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:29:30.726 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-16 22:29:30.845 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/6?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 22:29:30.846 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:29:30.847 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:29:30.847 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/6?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 22:29:30.851 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:29:30.854 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:29:30.967 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/6
2023-04-16 22:29:30.967 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:29:30.968 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:29:30.969 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/6
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 22:29:30.975 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:29:31.669 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/6
2023-04-16 22:29:31.670 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:29:31.670 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:29:31.670 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/6
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 22:29:31.676 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:48:34.441 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-16 22:48:34.443 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:48:34.445 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:48:34.445 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-16 22:48:34.477 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:48:34.519 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-16 22:48:34.519 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:48:34.520 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:48:34.520 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 22:48:34.535 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-16 22:48:34.884 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-16 22:48:34.884 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-16 22:48:34.885 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-16 22:48:34.885 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-16 22:48:34.895 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:18:30.110 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/2
2023-04-17 00:18:30.112 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:18:30.114 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:18:30.114 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/2
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 00:18:30.145 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:18:30.193 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/2?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 00:18:30.193 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:18:30.193 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:18:30.193 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/2?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
2023-04-17 00:18:30.213 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:18:30.528 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/2?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 00:18:30.528 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:18:30.529 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:18:30.529 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/2?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
2023-04-17 00:18:30.537 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:44:29.436 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/2
2023-04-17 00:44:29.438 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:44:29.440 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:44:29.440 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/2
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 00:44:29.496 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:44:29.526 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 00:44:29.526 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:44:29.527 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:44:29.527 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 00:44:29.594 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:44:29.682 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/2?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 00:44:29.682 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:44:29.683 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:44:29.683 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/2?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 00:44:29.688 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 00:44:29.842 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/2
2023-04-17 00:44:29.842 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 00:44:29.843 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 00:44:29.843 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/2
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 00:44:29.855 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:03:29.613 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 01:03:29.619 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:03:29.625 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:03:29.625 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 01:03:29.678 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:03:29.703 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-17 01:03:29.703 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:03:29.704 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:03:29.704 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 01:03:29.741 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:03:29.848 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 01:03:29.848 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:03:29.848 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:03:29.848 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 01:03:29.898 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:03:30.434 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-17 01:03:30.435 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:03:30.435 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:03:30.435 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 01:03:30.448 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:48:29.286 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/23
2023-04-17 01:48:29.287 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:48:29.287 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:48:29.287 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/23
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 01:48:29.360 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:48:29.403 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/23?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 01:48:29.403 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:48:29.404 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:48:29.404 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/23?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 01:48:29.422 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 01:48:30.179 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/23
2023-04-17 01:48:30.180 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 01:48:30.180 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 01:48:30.180 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/23
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 01:48:30.196 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 07:45:27.991 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 07:45:27.993 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 07:45:27.991 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 07:45:27.993 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 07:45:27.997 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 07:45:27.997 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 07:45:27.998 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 07:45:27.998 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 07:45:27.997 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 07:45:27.998 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 07:45:27.999 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 07:45:27.999 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-17 07:45:28.095 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 07:45:28.150 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 07:45:28.150 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 09:05:43.580 INFO 1453 --- [nio-5151-exec-3]
o.apache.coyote.http11.Http11Processor : Error parsing HTTP request header
Note: further occurrences of HTTP request parsing errors will be logged at DEBUG
level.

java.lang.IllegalArgumentException: Invalid character found in method name


[0x030x000x00/*0xe00x000x000x000x000x00Cookie: ]. HTTP method names must be tokens
at
org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:
419) ~[tomcat-embed-core-9.0.63.jar!/:na]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:
890) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1191) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:659) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
~[tomcat-embed-core-9.0.63.jar!/:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-17 10:51:18.821 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 10:51:18.822 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 10:51:18.821 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 10:51:18.823 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 10:51:18.821 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 10:51:18.823 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 10:51:18.830 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 10:51:18.830 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 10:51:18.830 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 10:51:18.831 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 10:51:18.832 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 10:51:18.834 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-17 10:51:18.914 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 10:51:18.977 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 10:51:18.988 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:09:03.641 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:09:03.643 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:09:03.642 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 11:09:03.644 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:09:03.644 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:09:03.644 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:09:03.642 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:09:03.645 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:09:03.646 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:09:03.646 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:09:03.647 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:09:03.647 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-17 11:09:03.697 WARN 1453 --- [io-5151-exec-10]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@7022669e (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.698 WARN 1453 --- [nio-5151-exec-5]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@14a935cd (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.698 WARN 1453 --- [nio-5151-exec-4]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@4a45ca02 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.703 WARN 1453 --- [nio-5151-exec-5]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@6201dac0 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.705 WARN 1453 --- [nio-5151-exec-5]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@5609f1bc (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.707 WARN 1453 --- [io-5151-exec-10]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@42165777 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-17 11:09:03.709 WARN 1453 --- [nio-5151-exec-4]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@76d18cfb (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
2023-04-17 11:09:03.723 WARN 1453 --- [nio-5151-exec-5]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@63f98cda (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 11:09:03.838 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:09:03.964 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:09:03.965 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:49:35.703 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:49:35.705 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:49:35.703 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 11:49:35.706 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:49:35.703 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:49:35.706 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:49:35.708 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:49:35.708 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-17 11:49:35.708 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:49:35.709 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:49:35.708 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:49:35.710 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 11:49:35.802 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:49:35.852 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:49:35.881 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:58:29.705 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 11:58:29.707 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:29.705 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:29.707 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:29.705 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:29.707 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:29.709 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:29.709 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:29.709 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-17 11:58:29.710 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:29.708 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:29.710 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-17 11:58:29.834 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:58:29.898 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:58:29.898 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:58:52.094 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/32?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 11:58:52.096 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.094 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:52.096 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.094 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 11:58:52.096 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.099 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.099 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:52.099 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.100 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-17 11:58:52.101 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.102 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/32?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-17 11:58:52.147 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 11:58:52.153 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:58:52.195 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:58:52.256 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/32?
pageNumber=1&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 11:58:52.259 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.256 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/32
2023-04-17 11:58:52.259 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.258 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:52.260 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.261 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.261 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:52.262 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.262 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/32?
pageNumber=1&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 11:58:52.260 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.265 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/32
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?, ?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select count(comment0_.id) as col_0_0_ from comments comment0_ where
comment0_.post_post_id=?
2023-04-17 11:58:52.280 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 11:58:52.280 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 11:58:52.281 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 11:58:52.281 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 11:58:52.291 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-17 11:58:52.295 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 11:58:52.346 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 11:58:52.352 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 12:27:55.894 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 12:27:55.896 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:27:55.894 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:27:55.897 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:27:55.898 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:27:55.898 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:27:55.898 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:27:55.899 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-17 12:27:55.997 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 12:27:56.030 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 12:28:00.292 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 12:28:00.293 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:28:00.295 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:28:00.295 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:28:00.296 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:28:00.296 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:28:00.297 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:28:00.297 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-17 12:28:00.318 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 12:28:00.367 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 12:28:00.429 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 12:28:00.429 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:28:00.430 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:28:00.430 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 12:28:00.488 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 12:34:22.528 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 12:34:22.531 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:34:22.529 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 12:34:22.531 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:34:22.529 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:34:22.531 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 12:34:22.532 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:34:22.533 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:34:22.533 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-17 12:34:22.533 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 12:34:22.534 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 12:34:22.534 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-17 12:34:22.605 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 12:34:22.685 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 12:34:22.686 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:20:34.321 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-17 13:20:34.323 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:20:34.328 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:20:34.328 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-17 13:20:34.330 WARN 1453 --- [nio-5151-exec-2]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-17 13:20:34.331 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:20:34.332 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-17 13:20:34.333 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:20:34.333 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:20:34.333 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-17 13:20:34.345 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:20:34.918 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/23
2023-04-17 13:20:34.920 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:20:34.921 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:20:34.922 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/23
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 13:20:34.990 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:20:35.569 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/23?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 13:20:35.569 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:20:35.570 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:20:35.570 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/23?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 13:20:35.588 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:20:36.130 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/23
2023-04-17 13:20:36.131 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:20:36.131 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:20:36.131 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/23
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 13:20:36.137 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:45:35.358 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/9?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 13:45:35.361 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:45:35.365 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:45:35.365 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/9?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
2023-04-17 13:45:35.417 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/9
2023-04-17 13:45:35.418 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:45:35.418 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:45:35.418 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/9
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 13:45:35.447 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:45:35.448 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:45:36.037 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 13:45:36.038 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:45:36.038 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:45:36.038 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-17 13:45:36.048 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 13:45:36.143 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 13:45:36.143 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 13:45:36.143 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 13:45:36.143 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 13:45:36.197 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:35.704 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/22?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 21:05:35.710 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:35.712 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:35.712 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/22?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 21:05:35.767 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/22
2023-04-17 21:05:35.767 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:35.767 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:35.767 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/22
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 21:05:35.828 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:35.827 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:35.940 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 21:05:35.940 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:35.941 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:35.941 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 21:05:35.999 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:36.419 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 21:05:36.419 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:36.420 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:36.420 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-17 21:05:36.428 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:36.508 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 21:05:36.508 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:36.509 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:36.509 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 21:05:36.551 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 21:05:36.974 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/22
2023-04-17 21:05:36.974 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 21:05:36.974 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 21:05:36.974 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/22
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 21:05:36.986 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:36.099 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/category/17?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 22:35:36.104 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:36.108 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:36.108 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/category/17?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ where post0_.category_id=? order by
post0_.added_date desc limit ?
2023-04-17 22:35:36.169 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/17
2023-04-17 22:35:36.170 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:36.171 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:36.171 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/17
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-17 22:35:36.207 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:36.208 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:37.429 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/7
2023-04-17 22:35:37.429 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:37.430 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:37.431 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/7
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 22:35:37.439 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:37.510 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/7?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 22:35:37.510 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:37.510 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:37.510 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/7?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 22:35:37.516 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:37.675 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 22:35:37.676 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:37.676 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:37.676 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-17 22:35:37.693 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:37.729 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 22:35:37.729 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:37.730 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:37.730 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 22:35:37.770 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 22:35:38.096 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/7
2023-04-17 22:35:38.096 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 22:35:38.096 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 22:35:38.097 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/7
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 22:35:38.109 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 23:44:44.195 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-17 23:44:44.197 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:44.200 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:44.200 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-17 23:44:44.248 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-17 23:44:44.248 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:44.248 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:44.250 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-17 23:44:44.329 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 23:44:44.380 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 23:44:44.412 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-17 23:44:44.412 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:44.413 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:44.413 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-17 23:44:44.489 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 23:44:44.902 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-17 23:44:44.903 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:44.903 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:44.903 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-17 23:44:44.914 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 23:44:45.188 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-17 23:44:45.188 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:45.189 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:45.189 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 23:44:45.198 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-17 23:44:45.837 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-17 23:44:45.837 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-17 23:44:45.837 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-17 23:44:45.837 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-17 23:44:45.848 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:41.596 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-18 03:33:41.605 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:41.607 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:41.607 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-18 03:33:41.607 WARN 1453 --- [nio-5151-exec-1]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-18 03:33:41.608 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:41.610 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-18 03:33:41.610 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:41.610 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:41.610 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-18 03:33:41.632 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:42.189 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-18 03:33:42.190 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:42.191 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:42.191 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-18 03:33:42.354 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:42.906 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 03:33:42.907 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:42.908 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:42.908 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
2023-04-18 03:33:42.941 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:43.352 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/18
2023-04-18 03:33:43.353 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:43.354 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:43.354 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/18
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-18 03:33:43.365 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:33:43.509 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 03:33:43.510 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:33:43.511 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:33:43.512 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 03:33:43.647 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:54:11.818 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:11.819 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:11.818 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 03:54:11.820 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:11.818 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:11.820 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:11.821 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:11.822 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:11.822 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:11.822 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:11.822 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:11.822 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 03:54:11.896 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 03:54:11.987 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:54:11.987 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:54:12.671 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:12.672 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:12.671 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 03:54:12.672 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:12.671 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:12.672 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 03:54:12.673 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:12.674 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 03:54:12.674 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:12.674 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 03:54:12.675 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 03:54:12.675 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-18 03:54:12.763 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 03:54:12.890 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 03:54:12.890 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:16:12.144 ERROR 1453 --- [onnection adder]
com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Error thrown while
acquiring connection from data source

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet successfully received from the server was 5,435 milliseconds ago.
The last packet sent successfully to the server was 7,351 milliseconds ago.
at
com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:1
74) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsM
apping.java:64) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1402)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1387)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:408)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link
failure

The last packet successfully received from the server was 5,435 milliseconds ago.
The last packet sent successfully to the server was 7,351 milliseconds ago.
at jdk.internal.reflect.GeneratedConstructorAccessor92.newInstance(Unknown
Source) ~[na:na]
at
java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Delega
tingConstructorAccessorImpl.java:45) ~[na:na]
at
java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
~[na:na]
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
~[na:na]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFac
tory.java:167) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:581)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:761)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:700)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:155)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.queryServerVariable(NativeSession.java:597)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1394)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 12 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) ~[na:na]
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) ~[na:na]
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:484)
~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.jav
a:478) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInpu
tRecord.java:70) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1
465) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:106
9) ~[na:na]
at java.base/java.io.FilterInputStream.read(FilterInputStream.java:132)
~[na:na]
at
com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeaderLocal(SimplePacketReader.java:
81) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:52) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:41) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:575)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 17 common frames omitted

2023-04-18 08:57:42.452 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:42.453 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:42.452 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:42.453 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 08:57:42.453 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:42.454 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:42.461 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:42.461 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:42.461 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 08:57:42.461 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:42.461 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:42.462 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 08:57:42.747 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 08:57:43.359 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:43.359 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:47.969 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:47.970 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:47.973 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:47.973 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 08:57:48.520 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/26?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 08:57:55.622 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/26
2023-04-18 08:57:55.622 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.621 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:55.622 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.625 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.626 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:55.626 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.627 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/26
2023-04-18 08:57:55.626 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.627 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/26?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 08:57:55.626 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.627 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:55.626 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.628 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-18 08:57:55.664 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:57:55.666 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.665 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/26?
pageNumber=1&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 08:57:55.666 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:57:55.668 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.668 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/26?
pageNumber=1&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 08:57:55.668 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:57:55.668 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?, ?
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(comment0_.id) as col_0_0_ from comments comment0_ where
comment0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 08:57:55.859 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 08:57:55.986 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:55.986 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 08:57:56.104 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 08:57:56.617 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:56.617 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:57:56.618 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:59:39.669 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 08:59:39.670 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:59:39.669 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 08:59:39.670 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:59:39.669 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:59:39.670 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 08:59:39.671 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:59:39.672 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 08:59:39.672 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:59:39.672 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 08:59:39.672 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 08:59:39.672 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 08:59:39.851 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 08:59:40.132 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 08:59:40.141 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 10:47:03.790 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 10:47:03.791 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 10:47:03.790 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 10:47:03.791 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 10:47:03.790 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 10:47:03.791 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 10:47:03.792 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 10:47:03.794 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 10:47:03.794 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 10:47:03.794 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 10:47:03.794 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 10:47:03.795 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 10:47:04.081 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 10:47:04.857 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 10:47:04.940 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 10:47:08.484 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 10:47:08.485 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 10:47:08.487 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 10:47:08.491 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 10:47:08.721 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:23:59.641 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:23:59.641 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 15:23:59.641 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:23:59.642 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:23:59.642 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:23:59.642 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:23:59.644 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:23:59.644 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:23:59.644 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:23:59.645 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:23:59.645 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:23:59.644 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 15:24:00.126 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:24:02.127 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:24:02.340 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:24:02.732 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:24:02.733 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:24:02.732 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:24:02.733 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:24:02.749 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:24:02.749 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:24:02.754 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:24:02.754 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:24:03.709 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:24:04.977 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:30:25.198 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 15:30:25.198 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:30:25.198 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:30:25.199 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:30:25.199 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:30:25.199 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:30:25.204 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:30:25.205 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 15:30:25.205 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:30:25.205 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:30:25.205 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:30:25.205 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 15:30:25.709 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:30:25.899 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:30:25.912 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:30:25.919 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:30:25.922 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:30:27.064 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:30:27.151 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:30:27.660 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:30:27.672 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:30:27.680 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:30:27.681 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
2023-04-18 15:30:27.853 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-18 15:30:28.299 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:31:37.149 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 15:31:37.150 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:37.149 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:37.152 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:37.152 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:37.152 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:37.155 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:37.156 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 15:31:37.156 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:37.156 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:37.156 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:37.156 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:31:37.755 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:39.248 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:39.550 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:31:41.336 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 15:31:41.336 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:41.336 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:41.336 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:41.336 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:41.337 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:41.337 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:41.337 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 15:31:41.338 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:41.338 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:41.338 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:41.338 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 15:31:41.905 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 15:31:41.906 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:31:41.951 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:41.981 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:41.997 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-18 15:31:42.005 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:42.061 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:42.076 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:42.070 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:42.082 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:42.097 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-18 15:31:42.124 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
2023-04-18 15:31:42.157 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 15:31:42.838 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
2023-04-18 15:31:43.470 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:44.225 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:44.816 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:31:45.024 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 15:31:45.219 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:45.220 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:45.222 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:45.222 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 15:31:45.694 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 15:31:45.698 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 15:31:45.777 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 15:31:45.806 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=2&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?, ?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:46.992 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 15:31:47.971 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 16:24:32.644 ERROR 1453 --- [onnection adder]
com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Error thrown while
acquiring connection from data source

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet successfully received from the server was 5,237 milliseconds ago.
The last packet sent successfully to the server was 9,091 milliseconds ago.
at
com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:1
74) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsM
apping.java:64) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1402)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1387)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:408)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link
failure

The last packet successfully received from the server was 5,237 milliseconds ago.
The last packet sent successfully to the server was 9,091 milliseconds ago.
at jdk.internal.reflect.GeneratedConstructorAccessor92.newInstance(Unknown
Source) ~[na:na]
at
java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Delega
tingConstructorAccessorImpl.java:45) ~[na:na]
at
java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
~[na:na]
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
~[na:na]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFac
tory.java:167) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:581)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:761)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:700)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:155)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.queryServerVariable(NativeSession.java:597)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1394)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 12 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) ~[na:na]
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) ~[na:na]
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:484)
~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.jav
a:478) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInpu
tRecord.java:70) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1
465) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:106
9) ~[na:na]
at java.base/java.io.FilterInputStream.read(FilterInputStream.java:132)
~[na:na]
at
com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeaderLocal(SimplePacketReader.java:
81) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:52) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:41) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:575)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 17 common frames omitted

2023-04-18 19:00:23.573 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 19:00:23.574 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 19:00:23.575 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 19:00:23.576 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-18 19:00:23.595 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 19:00:23.598 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-18 19:00:23.598 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 19:00:23.598 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 19:00:23.599 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 19:00:23.599 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 19:00:23.600 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 19:00:23.601 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
Hibernate: select category0_.category_id as category1_0_, category0_.description as
descript2_0_, category0_.title as title3_0_ from categories category0_
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
2023-04-18 19:00:24.059 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-18 19:00:40.651 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 19:00:41.642 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:04:46.217 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-18 22:04:46.218 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:04:46.226 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:04:46.227 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-18 22:04:46.231 WARN 1453 --- [nio-5151-exec-2]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-18 22:04:46.232 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:04:46.237 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-18 22:04:46.238 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:04:46.238 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:04:46.238 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-18 22:04:46.256 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:04:46.934 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/22
2023-04-18 22:04:46.935 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:04:46.937 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:04:46.937 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/22
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-18 22:04:47.485 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:04:47.910 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/22?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 22:04:47.914 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:04:47.933 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:04:47.934 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/22?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-18 22:04:48.835 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:04:49.263 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/22
2023-04-18 22:04:49.283 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:04:49.293 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:04:49.293 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/22
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-18 22:04:49.766 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:19:15.805 ERROR 1453 --- [onnection adder]
com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Error thrown while
acquiring connection from data source

com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure

The last packet successfully received from the server was 5,452 milliseconds ago.
The last packet sent successfully to the server was 9,571 milliseconds ago.
at
com.mysql.cj.jdbc.exceptions.SQLError.createCommunicationsException(SQLError.java:1
74) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsM
apping.java:64) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1402)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1387)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.zaxxer.hikari.pool.PoolBase.setupConnection(PoolBase.java:408)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:369)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
Caused by: com.mysql.cj.exceptions.CJCommunicationsException: Communications link
failure

The last packet successfully received from the server was 5,452 milliseconds ago.
The last packet sent successfully to the server was 9,571 milliseconds ago.
at jdk.internal.reflect.GeneratedConstructorAccessor92.newInstance(Unknown
Source) ~[na:na]
at
java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(Delega
tingConstructorAccessorImpl.java:45) ~[na:na]
at
java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
~[na:na]
at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
~[na:na]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:61)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:105)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createException(ExceptionFactory.java:151)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.exceptions.ExceptionFactory.createCommunicationsException(ExceptionFac
tory.java:167) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:581)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:761)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:700)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:155)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.queryServerVariable(NativeSession.java:597)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.isReadOnly(ConnectionImpl.java:1394)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 12 common frames omitted
Caused by: java.net.SocketTimeoutException: Read timed out
at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) ~[na:na]
at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) ~[na:na]
at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.read(SSLSocketInputRecord.java:484)
~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.readHeader(SSLSocketInputRecord.jav
a:478) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketInputRecord.bytesInCompletePacket(SSLSocketInpu
tRecord.java:70) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl.readApplicationRecord(SSLSocketImpl.java:1
465) ~[na:na]
at
java.base/sun.security.ssl.SSLSocketImpl$AppInputStream.read(SSLSocketImpl.java:106
9) ~[na:na]
at java.base/java.io.FilterInputStream.read(FilterInputStream.java:132)
~[na:na]
at
com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeaderLocal(SimplePacketReader.java:
81) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:52) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReade
r.java:41) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:575)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
... 17 common frames omitted

2023-04-18 22:29:50.085 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/20
2023-04-18 22:29:50.086 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:29:50.091 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:29:50.091 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/20
2023-04-18 22:29:50.116 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@53c9c084 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.119 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@3f1aa89b (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.120 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@784b6cc8 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.120 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@651b5ea5 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.121 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@1f1d44c9 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.121 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@752969c1 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.123 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@56a76680 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.123 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@69f6e487 (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.124 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@1c38de7c (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.126 WARN 1453 --- [nio-5151-exec-1]
com.zaxxer.hikari.pool.PoolBase : HikariPool-1 - Failed to validate
connection com.mysql.cj.jdbc.ConnectionImpl@2261cb5b (No operations allowed after
connection closed.). Possibly consider using a shorter maxLifetime value.
2023-04-18 22:29:50.169 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/20?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-18 22:29:50.169 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 22:29:50.171 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 22:29:50.172 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/20?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
Hibernate: select post0_.post_id as post_id1_3_0_, post0_.added_date as
added_da2_3_0_, post0_.category_id as category6_3_0_, post0_.content as
content3_3_0_, post0_.image_name as image_na4_3_0_, post0_.post_title as
post_tit5_3_0_, post0_.user_id as user_id7_3_0_, category1_.category_id as
category1_0_1_, category1_.description as descript2_0_1_, category1_.title as
title3_0_1_, user2_.id as id1_7_2_, user2_.about as about2_7_2_, user2_.email as
email3_7_2_, user2_.user_name as user_nam4_7_2_, user2_.password as password5_7_2_,
user2_.reset_password_token as reset_pa6_7_2_, roles3_.user as user1_6_3_,
role4_.id as role2_6_3_, role4_.id as id1_5_4_, role4_.name as name2_5_4_ from
posts post0_ left outer join categories category1_ on
post0_.category_id=category1_.category_id left outer join users user2_ on
post0_.user_id=user2_.id left outer join user_role roles3_ on
user2_.id=roles3_.user left outer join role role4_ on roles3_.role=role4_.id where
post0_.post_id=?
2023-04-18 22:29:50.642 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 22:30:27.354 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-18 23:59:49.302 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-18 23:59:49.303 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-18 23:59:49.304 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-18 23:59:49.305 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
Hibernate: select post0_.post_id as post_id1_3_, post0_.added_date as added_da2_3_,
post0_.category_id as category6_3_, post0_.content as content3_3_,
post0_.image_name as image_na4_3_, post0_.post_title as post_tit5_3_,
post0_.user_id as user_id7_3_ from posts post0_ order by post0_.added_date desc
limit ?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select user0_.id as id1_7_0_, user0_.about as about2_7_0_, user0_.email
as email3_7_0_, user0_.user_name as user_nam4_7_0_, user0_.password as
password5_7_0_, user0_.reset_password_token as reset_pa6_7_0_, roles1_.user as
user1_6_1_, role2_.id as role2_6_1_, role2_.id as id1_5_2_, role2_.name as
name2_5_2_ from users user0_ left outer join user_role roles1_ on
user0_.id=roles1_.user left outer join role role2_ on roles1_.role=role2_.id where
user0_.id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select category0_.category_id as category1_0_0_, category0_.description
as descript2_0_0_, category0_.title as title3_0_0_ from categories category0_ where
category0_.category_id=?
Hibernate: select count(post0_.post_id) as col_0_0_ from posts post0_
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
Hibernate: select comments0_.post_post_id as post_pos4_1_0_, comments0_.id as
id1_1_0_, comments0_.id as id1_1_1_, comments0_.content as content2_1_1_,
comments0_.email as email3_1_1_, comments0_.post_post_id as post_pos4_1_1_ from
comments comments0_ where comments0_.post_post_id=?
2023-04-19 00:00:20.754 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 04:38:51.272 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 04:38:51.274 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 04:38:51.274 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 04:38:51.274 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 04:39:21.286 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 04:39:21.286 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30002ms.
2023-04-19 04:39:21.286 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 04:39:21.310 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 04:39:21.313 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause
java.net.ConnectException: Connection refused
at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 04:39:21.314 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 04:39:21.314 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 04:39:21.314 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 04:39:21.314 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 04:39:21.320 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 05:23:50.801 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 05:23:50.802 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 05:23:50.802 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 05:23:50.802 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 05:24:20.803 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 05:24:20.803 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 05:24:20.803 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 05:24:20.806 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 05:24:20.807 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 05:24:20.807 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 05:24:20.807 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 05:24:20.807 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 05:24:20.807 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 05:24:20.811 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:30:57.650 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:30:57.651 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:30:57.653 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:30:57.657 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:30:57.762 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:30:57.762 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:30:57.762 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:30:57.762 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:30:57.926 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:30:57.926 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:30:57.927 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:30:57.927 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:31:27.662 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:31:27.662 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:31:27.662 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:31:27.663 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:27.670 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:31:27.671 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:27.671 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:27.671 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:27.671 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:27.674 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:27.765 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:31:27.765 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:31:27.765 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:31:27.766 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:27.766 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:31:27.767 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:27.767 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:27.767 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:27.767 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:27.770 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:27.927 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:31:27.928 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:31:27.928 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:31:27.928 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:27.930 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:31:27.930 DEBUG 1453 --- [nio-5151-exec-7]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:31:27.930 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:27.930 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:27.930 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:31:27.933 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:31:32.655 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:32.656 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:32.656 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:32.656 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:32.870 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:32.871 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:32.872 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:32.876 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:31:33.169 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:31:33.170 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:31:33.170 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:31:33.170 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:32:02.658 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:02.658 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:02.658 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:02.659 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:02.661 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:02.665 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:02.665 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:02.665 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:02.665 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:02.668 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:02.877 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:02.878 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:02.878 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:02.878 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:02.879 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:02.879 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:02.879 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:02.879 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:02.879 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:02.883 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:03.171 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:03.171 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:03.171 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:03.172 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:03.172 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:03.173 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:32:03.173 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:03.173 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:03.173 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:32:03.178 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:09.208 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:32:09.208 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:09.209 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:09.209 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:32:09.250 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:09.250 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:09.250 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:09.250 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:09.812 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:09.814 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:09.814 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:09.816 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:39.210 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:39.210 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:39.210 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:39.210 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:39.211 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:39.211 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:32:39.211 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:39.211 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:39.211 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:32:39.219 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:39.251 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:39.252 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:39.252 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:39.252 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:39.253 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:39.253 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:39.253 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:39.253 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:39.253 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:39.257 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:39.818 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:32:39.818 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:32:39.818 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:32:39.819 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:39.819 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:32:39.820 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:39.820 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:39.820 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:39.820 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:39.826 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:32:43.289 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:32:43.290 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:43.290 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:43.290 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:32:43.318 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:43.318 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:43.319 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:43.319 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:43.582 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:32:43.583 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:32:43.583 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:32:43.583 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:13.291 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:33:13.291 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:33:13.291 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:33:13.293 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:13.296 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:33:13.297 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:33:13.297 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:13.297 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:13.297 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:33:13.304 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:13.320 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:33:13.321 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:33:13.321 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:33:13.321 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:13.322 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:33:13.323 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:13.323 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:13.323 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:13.323 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:13.327 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:13.584 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:33:13.584 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:33:13.584 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:33:13.585 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:13.585 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:33:13.586 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:13.586 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:13.586 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:13.586 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:13.591 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:16.155 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:33:16.155 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:16.155 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:16.155 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:33:16.443 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:16.443 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:16.443 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:16.443 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:46.157 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:33:46.157 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:33:46.157 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:33:46.157 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:46.159 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause
java.net.ConnectException: Connection refused
at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
2023-04-19 08:33:46.160 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:33:46.160 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:46.160 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:46.160 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:33:46.164 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:46.444 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:33:46.445 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:33:46.445 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:33:46.447 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:46.449 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:33:46.450 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:46.450 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:46.450 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:46.450 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:46.453 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:33:50.188 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:50.188 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:50.188 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:50.188 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:33:50.507 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:33:50.508 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:33:50.508 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:33:50.508 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:34:20.192 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:34:20.192 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:34:20.192 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:34:20.193 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:20.194 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:34:20.199 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:20.199 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:20.199 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:20.199 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:20.202 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:20.509 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:34:20.509 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:34:20.509 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:34:20.511 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:20.512 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:34:20.512 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:34:20.512 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:20.512 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:20.513 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:34:20.515 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:22.844 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:34:22.845 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:22.845 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:22.845 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:34:23.135 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:23.135 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:23.136 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:23.136 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:52.847 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:34:52.847 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:34:52.847 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:34:52.847 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:52.848 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:34:52.848 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:34:52.848 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:52.848 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:52.848 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:34:52.851 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:53.137 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:34:53.137 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:34:53.137 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:34:53.138 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:53.138 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:34:53.139 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:53.139 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:53.139 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:53.139 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:53.142 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:34:55.524 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:34:55.525 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:55.525 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:55.525 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:34:55.888 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:34:55.888 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:34:55.888 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:34:55.888 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:25.526 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:35:25.526 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:35:25.526 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:35:25.527 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:25.527 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:35:25.531 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:35:25.531 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:25.531 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:25.531 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:35:25.536 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:25.889 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:35:25.889 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:35:25.889 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:35:25.890 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:25.890 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:35:25.891 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:25.891 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:25.891 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:25.891 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:25.893 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:28.688 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:35:28.689 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:28.689 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:28.689 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:35:29.106 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:29.106 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:29.107 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:29.107 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:58.691 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:35:58.691 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:35:58.691 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:35:58.692 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:58.692 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:35:58.693 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:35:58.693 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:58.693 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:58.693 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:35:58.702 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:59.108 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:35:59.108 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:35:59.108 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:35:59.108 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:35:59.109 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:35:59.110 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:59.110 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:35:59.110 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:35:59.110 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:35:59.111 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:36:01.756 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:36:01.756 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:01.756 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:01.756 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:36:02.524 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:02.524 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:02.524 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:02.524 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:31.757 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:36:31.757 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:36:31.757 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:36:31.758 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:36:31.758 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:36:31.759 DEBUG 1453 --- [nio-5151-exec-7]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:36:31.759 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:31.759 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:31.759 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:36:31.764 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:36:32.526 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:36:32.526 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:36:32.526 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:36:32.527 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:36:32.528 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:36:32.528 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:32.528 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:32.528 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:32.528 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:32.533 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:36:35.464 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:36:35.464 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:35.464 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:35.464 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:36:35.981 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:35.982 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:35.982 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:35.982 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:36:53.455 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/6
2023-04-19 08:36:53.455 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:36:53.456 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:36:53.456 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/6
2023-04-19 08:37:05.466 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:37:05.466 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:37:05.466 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:37:05.466 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:05.467 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:37:05.467 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:37:05.467 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:05.467 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:05.467 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:37:05.469 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:05.983 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:37:05.983 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:37:05.983 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:37:05.984 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:05.985 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:37:05.985 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:05.985 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:05.985 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:05.985 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:05.987 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:14.754 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:37:14.754 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:14.754 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:14.754 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:37:15.316 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:15.316 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:15.316 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:15.316 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:23.457 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:37:23.457 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:37:23.457 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:37:23.458 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:23.459 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:37:23.459 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:37:23.459 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:23.460 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:23.460 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:37:23.467 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:44.755 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:37:44.755 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:37:44.755 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:37:44.756 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:44.757 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:37:44.758 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:37:44.758 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:44.758 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:44.758 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:37:44.761 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:45.318 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:37:45.318 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:37:45.318 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:37:45.319 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:45.320 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:37:45.322 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:45.322 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:45.322 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:45.322 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:45.327 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:37:55.996 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:55.996 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:55.996 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:55.996 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:37:56.605 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:37:56.605 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:37:56.606 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:37:56.606 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:38:26.001 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:38:26.001 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:38:26.001 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:38:26.002 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:38:26.002 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:38:26.003 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:38:26.003 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:38:26.003 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:38:26.003 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:38:26.006 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:38:26.607 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:38:26.608 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:38:26.608 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:38:26.609 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:38:26.609 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:38:26.610 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:38:26.610 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:38:26.610 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:38:26.610 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:38:26.612 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:38:39.658 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:38:39.659 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:38:39.659 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:38:39.659 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:38:40.324 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 08:38:40.324 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:38:40.324 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:38:40.325 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 08:39:09.660 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:39:09.660 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:39:09.660 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:39:09.661 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:39:09.663 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:39:09.664 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:39:09.664 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:39:09.664 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:39:09.664 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 08:39:09.668 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:39:10.325 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:39:10.325 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:39:10.325 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:39:10.326 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:39:10.327 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:39:10.327 DEBUG 1453 --- [nio-5151-exec-7]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 08:39:10.327 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:39:10.327 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:39:10.327 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 08:39:10.329 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:41:13.874 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:41:13.874 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:41:13.874 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:41:13.874 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:41:43.875 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 08:41:43.875 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 08:41:43.875 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 08:41:43.876 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 08:41:43.876 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 08:41:43.877 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:41:43.877 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 08:41:43.877 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 08:41:43.877 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 08:41:43.878 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:23:42.589 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 09:23:42.589 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:23:42.590 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:23:42.590 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 09:23:42.597 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:23:42.597 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:23:42.598 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:23:42.598 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:23:42.604 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:23:42.604 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:23:42.604 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:23:42.604 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:24:12.591 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:24:12.591 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:24:12.591 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:24:12.591 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:24:12.592 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause
java.net.ConnectException: Connection refused
at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:24:12.592 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 09:24:12.592 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:24:12.592 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:24:12.592 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 09:24:12.596 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:24:12.599 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:24:12.599 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:24:12.599 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:24:12.601 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:24:12.601 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:24:12.602 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:24:12.602 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:24:12.602 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:24:12.602 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:24:12.605 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:24:12.605 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:24:12.605 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:24:12.606 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:24:12.606 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:24:12.607 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:24:12.607 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:24:12.607 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:24:12.607 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:24:12.609 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:24:12.610 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:25:49.442 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:25:49.444 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:25:49.442 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:25:49.445 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:25:49.444 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 09:25:49.445 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:25:49.445 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:25:49.445 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:25:49.446 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:25:49.446 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 09:25:49.446 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:25:49.447 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:25:54.751 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:25:54.752 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:25:54.752 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:25:54.752 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:03.890 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:03.890 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:03.891 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:03.891 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:03.892 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 09:26:03.892 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:03.892 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:03.892 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 09:26:03.893 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:03.893 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:03.893 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:03.893 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:06.938 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 09:26:06.938 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:06.939 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:06.939 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 09:26:06.941 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:06.941 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:06.944 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:06.945 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:06.948 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:06.948 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:06.948 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:06.948 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:19.446 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:19.451 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:19.451 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:19.447 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:19.452 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:19.450 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:19.452 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:19.452 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:19.453 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:19.453 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:19.453 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:19.453 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:19.454 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:19.454 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:19.455 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:19.457 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:19.457 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:19.457 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:19.458 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 09:26:19.458 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:19.458 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:19.458 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 09:26:19.459 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:19.459 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:19.459 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:19.460 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:19.460 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:19.460 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:19.460 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:19.462 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:24.754 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:24.754 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:24.754 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:24.754 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:24.755 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:24.755 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:24.755 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:24.755 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:24.755 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:24.757 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.893 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:33.893 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:33.893 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:33.894 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.894 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause
java.net.ConnectException: Connection refused
at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
2023-04-19 09:26:33.894 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 09:26:33.894 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:33.894 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:33.895 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 09:26:33.895 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:33.895 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:33.895 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:33.895 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.895 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:33.896 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:33.896 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:33.896 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:33.896 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:33.897 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:33.897 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:33.897 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:33.898 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.898 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:33.898 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:33.898 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:33.898 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:33.898 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:33.899 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.901 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:33.901 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.940 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:36.940 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:36.940 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:36.941 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.941 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:36.942 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 09:26:36.942 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:36.942 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:36.942 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 09:26:36.944 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.946 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:36.946 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:36.946 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:36.946 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.947 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:36.947 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:36.947 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:36.947 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:36.947 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:36.949 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 09:26:36.949 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 09:26:36.949 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 09:26:36.950 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.950 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 09:26:36.950 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:36.950 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 09:26:36.951 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 09:26:36.951 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 09:26:36.952 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 09:26:36.955 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 16:54:28.066 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /robots.txt
2023-04-19 16:54:28.067 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 16:54:28.068 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 16:54:28.068 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /robots.txt
2023-04-19 16:54:28.068 WARN 1453 --- [nio-5151-exec-8]
o.s.web.servlet.PageNotFound : No mapping for GET /robots.txt
2023-04-19 16:54:28.069 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 16:54:28.069 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 16:54:28.069 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 16:54:28.069 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 16:54:28.069 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 16:54:28.078 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 16:54:28.624 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-19 16:54:28.624 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 16:54:28.625 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 16:54:28.625 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
2023-04-19 16:54:58.630 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 16:54:58.630 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 16:54:58.630 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 16:54:58.630 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 16:54:58.631 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 16:54:58.631 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 16:54:58.631 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 16:54:58.631 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 16:54:58.631 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 16:54:58.635 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:38.313 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 17:00:38.314 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/4
2023-04-19 17:00:38.315 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:38.315 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:38.315 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/4
2023-04-19 17:00:38.317 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 17:00:38.317 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:38.317 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:38.317 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 17:00:38.319 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:38.319 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 17:00:38.338 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:00:38.338 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:38.338 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:38.338 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/4?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-19 17:00:40.722 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/comments/26?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:00:40.722 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:40.722 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:40.722 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/comments/26?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:00:40.723 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts/26
2023-04-19 17:00:40.723 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:00:40.723 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:00:40.724 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts/26
Hibernate: select comment0_.id as id1_1_, comment0_.content as content2_1_,
comment0_.email as email3_1_, comment0_.post_post_id as post_pos4_1_ from comments
comment0_ where comment0_.post_post_id=? order by comment0_.id desc limit ?
2023-04-19 17:01:08.314 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:08.315 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:08.315 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:08.315 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.315 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:08.316 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:08.316 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:08.316 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:08.317 DEBUG 1453 --- [io-5151-exec-10]


s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.318 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:08.318 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:08.318 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:08.318 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.318 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:08.319 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 17:01:08.319 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:08.319 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:08.319 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 17:01:08.318 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:08.320 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 17:01:08.320 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:08.321 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:08.321 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:08.321 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:08.321 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.322 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:08.322 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 17:01:08.322 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:08.322 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:08.322 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 17:01:08.323 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.326 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.320 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:08.326 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 17:01:08.327 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.317 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 17:01:08.333 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:08.333 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:08.333 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 17:01:08.335 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.340 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:08.340 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:08.340 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:08.344 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:08.345 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.dao.DataAccessResourceFailureException: Unable to acquire
JDBC Connection; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:08.345 DEBUG 1453 --- [nio-5151-exec-7]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:01:08.346 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:08.346 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:08.346 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:01:08.351 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:10.724 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:10.725 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 17:01:10.725 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:10.725 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:10.726 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]
2023-04-19 17:01:10.726 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 17:01:10.726 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:10.726 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:10.726 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 17:01:10.728 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 17:01:10.728 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30002ms.
2023-04-19 17:01:10.728 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 17:01:10.729 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:10.729 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.dao.DataAccessResourceFailureException: Unable to acquire
JDBC Connection; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 17:01:10.730 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:01:10.730 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 17:01:10.730 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 17:01:10.730 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=id&sortDir=desc
2023-04-19 17:01:10.734 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 17:01:10.738 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:10.881 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:10.881 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:10.882 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:10.882 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:10.883 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:10.883 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:10.883 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:10.883 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:10.894 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 21:15:10.894 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:10.894 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:10.894 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 21:15:40.885 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:15:40.885 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:15:40.885 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:15:40.886 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:40.886 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:15:40.886 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:40.886 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:40.886 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:15:40.886 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:15:40.886 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:15:40.887 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:40.887 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:15:40.887 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:40.887 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:40.887 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:40.887 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:40.888 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:40.889 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:40.889 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:15:40.894 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:40.895 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:15:40.895 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:15:40.895 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:15:40.895 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:15:40.895 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:15:40.896 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 21:15:40.896 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:15:40.896 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:15:40.896 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 21:15:40.896 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:36:59.589 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:36:59.589 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:36:59.590 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:36:59.590 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:36:59.590 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:36:59.590 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:36:59.590 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:36:59.591 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:36:59.595 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 21:36:59.595 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:36:59.595 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:36:59.595 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 21:37:29.593 WARN 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:37:29.593 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:37:29.593 ERROR 1453 --- [nio-5151-exec-9]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:37:29.593 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:37:29.594 ERROR 1453 --- [nio-5151-exec-9] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:37:29.594 DEBUG 1453 --- [nio-5151-exec-9]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:37:29.594 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:37:29.594 DEBUG 1453 --- [nio-5151-exec-9]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:37:29.594 DEBUG 1453 --- [nio-5151-exec-9]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:37:29.596 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:37:29.596 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:37:29.596 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:37:29.597 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:37:29.597 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30004ms.
2023-04-19 21:37:29.597 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:37:29.598 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:37:29.598 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:37:29.598 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:37:29.598 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:37:29.598 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:37:29.598 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:37:29.600 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:37:29.600 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:37:29.600 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:37:29.601 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 21:37:29.601 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:37:29.601 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:37:29.601 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 21:37:29.604 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:37:29.604 DEBUG 1453 --- [nio-5151-exec-9]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:39:43.684 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 21:39:43.684 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:39:43.685 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:39:43.685 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 21:39:43.685 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:39:43.685 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:39:43.686 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:39:43.686 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:39:43.687 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:39:43.687 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:39:43.687 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:39:43.687 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:39:52.925 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:39:52.925 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:39:52.925 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:39:52.925 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:13.687 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:40:13.687 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:40:13.687 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:40:13.687 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:13.688 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:40:13.688 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:40:13.688 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:40:13.688 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:13.688 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:40:13.689 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:13.689 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:40:13.691 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:40:13.691 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30003ms.
2023-04-19 21:40:13.691 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:40:13.692 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:13.692 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:40:13.692 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].


[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:40:13.692 DEBUG 1453 --- [nio-5151-exec-4]


o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:40:13.693 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:13.694 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:13.694 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 21:40:13.694 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:40:13.694 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:40:13.694 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 21:40:13.695 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:13.700 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:13.700 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:40:13.700 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:40:13.700 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:13.701 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:22.926 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 21:40:22.926 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 21:40:22.926 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 21:40:22.927 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 21:40:22.927 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 21:40:22.928 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:22.928 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 21:40:22.928 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 21:40:22.928 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=1&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-19 21:40:22.930 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 22:19:57.749 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-19 22:19:57.749 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 22:19:57.749 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 22:19:57.750 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-19 22:20:27.750 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-19 22:20:27.750 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-19 22:20:27.750 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-19 22:20:27.751 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-19 22:20:27.751 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-19 22:20:27.752 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-19 22:20:27.752 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-19 22:20:27.752 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-19 22:20:27.752 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-19 22:20:27.754 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 00:34:57.608 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 00:34:57.609 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 00:34:57.616 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 00:34:57.616 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 00:35:27.624 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 00:35:27.624 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 00:35:27.624 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 00:35:27.626 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 00:35:27.627 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 00:35:27.628 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 00:35:27.628 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 00:35:27.628 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 00:35:27.628 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 00:35:27.632 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:28:40.251 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 02:28:40.251 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:28:40.252 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:28:40.252 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 02:28:40.255 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 02:28:40.255 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:28:40.255 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:28:40.256 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 02:28:40.256 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-20 02:28:40.256 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:28:40.257 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:28:40.257 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-20 02:29:10.257 WARN 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 02:29:10.257 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 02:29:10.257 ERROR 1453 --- [io-5151-exec-10]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 02:29:10.257 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:29:10.258 ERROR 1453 --- [io-5151-exec-10] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 02:29:10.258 DEBUG 1453 --- [io-5151-exec-10]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 02:29:10.258 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:29:10.258 DEBUG 1453 --- [io-5151-exec-10]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:29:10.258 DEBUG 1453 --- [io-5151-exec-10]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 02:29:10.260 DEBUG 1453 --- [io-5151-exec-10]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:29:10.260 WARN 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 02:29:10.260 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30002ms.
2023-04-20 02:29:10.260 ERROR 1453 --- [nio-5151-exec-5]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 02:29:10.261 WARN 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 02:29:10.261 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30007ms.
2023-04-20 02:29:10.261 ERROR 1453 --- [nio-5151-exec-3]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 02:29:10.261 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:29:10.261 ERROR 1453 --- [nio-5151-exec-5] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 02:29:10.262 DEBUG 1453 --- [nio-5151-exec-5]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-20 02:29:10.262 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:29:10.262 DEBUG 1453 --- [nio-5151-exec-5]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:29:10.262 DEBUG 1453 --- [nio-5151-exec-5]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-20 02:29:10.263 DEBUG 1453 --- [nio-5151-exec-5]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:29:10.264 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 02:29:10.264 ERROR 1453 --- [nio-5151-exec-3] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 02:29:10.264 DEBUG 1453 --- [nio-5151-exec-3]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 02:29:10.264 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 02:29:10.264 DEBUG 1453 --- [nio-5151-exec-3]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 02:29:10.264 DEBUG 1453 --- [nio-5151-exec-3]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 02:29:10.268 DEBUG 1453 --- [nio-5151-exec-3]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 06:44:04.469 INFO 1453 --- [nio-5151-exec-9]
o.apache.coyote.http11.Http11Processor : Error parsing HTTP request header
Note: further occurrences of HTTP request parsing errors will be logged at DEBUG
level.

java.lang.IllegalArgumentException: Invalid character found in method name


[0x030x000x00/*0xe00x000x000x000x000x00Cookie: ]. HTTP method names must be tokens
at
org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:
419) ~[tomcat-embed-core-9.0.63.jar!/:na]
at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:
890) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1191) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:659) ~[tomcat-embed-core-9.0.63.jar!/:na]
at
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
~[tomcat-embed-core-9.0.63.jar!/:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:35:34.576 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:34.577 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:34.578 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-20 15:35:34.578 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:34.578 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:34.578 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-20 15:35:34.579 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:34.579 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:34.595 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:34.595 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:34.596 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:34.596 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:39.012 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:39.012 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:39.013 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:39.013 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:39.015 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:39.015 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:39.016 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:39.016 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/posts?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:35:39.017 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Securing GET /api/v1/categories/
2023-04-20 15:35:39.017 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:35:39.018 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:35:39.018 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /api/v1/categories/
2023-04-20 15:36:04.581 WARN 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:04.581 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 15:36:04.581 ERROR 1453 --- [nio-5151-exec-2]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:04.582 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:04.582 WARN 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:04.582 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30001ms.
2023-04-20 15:36:04.582 ERROR 1453 --- [nio-5151-exec-4]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:04.583 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:04.584 ERROR 1453 --- [nio-5151-exec-4] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:04.584 DEBUG 1453 --- [nio-5151-exec-4]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-20 15:36:04.584 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:04.585 DEBUG 1453 --- [nio-5151-exec-4]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:04.585 DEBUG 1453 --- [nio-5151-exec-4]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-20 15:36:04.585 ERROR 1453 --- [nio-5151-exec-2] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:04.586 DEBUG 1453 --- [nio-5151-exec-2]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:04.586 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:04.586 DEBUG 1453 --- [nio-5151-exec-2]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:04.586 DEBUG 1453 --- [nio-5151-exec-2]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:04.593 DEBUG 1453 --- [nio-5151-exec-2]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:04.594 DEBUG 1453 --- [nio-5151-exec-4]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:04.597 WARN 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:04.597 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 15:36:04.597 ERROR 1453 --- [nio-5151-exec-7]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:04.598 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:04.598 ERROR 1453 --- [nio-5151-exec-7] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:04.598 DEBUG 1453 --- [nio-5151-exec-7]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:04.598 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:04.598 DEBUG 1453 --- [nio-5151-exec-7]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:04.598 DEBUG 1453 --- [nio-5151-exec-7]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:04.600 DEBUG 1453 --- [nio-5151-exec-7]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.019 WARN 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:09.019 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 15:36:09.019 ERROR 1453 --- [nio-5151-exec-8]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:09.020 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.020 ERROR 1453 --- [nio-5151-exec-8] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:09.021 DEBUG 1453 --- [nio-5151-exec-8]


o.s.security.web.FilterChainProxy : Securing GET /error
2023-04-20 15:36:09.021 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:09.022 WARN 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:09.022 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30000ms.
2023-04-20 15:36:09.022 ERROR 1453 --- [nio-5151-exec-6]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:09.023 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.023 ERROR 1453 --- [nio-5151-exec-6] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:09.023 DEBUG 1453 --- [nio-5151-exec-6]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:09.023 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:09.023 DEBUG 1453 --- [nio-5151-exec-6]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:09.023 DEBUG 1453 --- [nio-5151-exec-6]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=5&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:09.025 WARN 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 0, SQLState: 08S01
2023-04-20 15:36:09.025 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : HikariPool-1 - Connection is not
available, request timed out after 30002ms.
2023-04-20 15:36:09.025 ERROR 1453 --- [nio-5151-exec-1]
o.h.engine.jdbc.spi.SqlExceptionHelper : Communications link failure

The last packet sent successfully to the server was 0 milliseconds ago. The driver
has not received any packets from the server.
2023-04-20 15:36:09.027 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.027 ERROR 1453 --- [nio-5151-exec-1] o.a.c.c.C.[.[.[/].
[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in
context with path [] threw exception [Request processing failed; nested exception
is org.springframework.transaction.CannotCreateTransactionException: Could not open
JPA EntityManager for transaction; nested exception is
org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection]
with root cause

java.net.ConnectException: Connection refused


at java.base/sun.nio.ch.Net.pollConnect(Native Method) ~[na:na]
at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) ~[na:na]
at
java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542)
~[na:na]
at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597)
~[na:na]
at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327)
~[na:na]
at java.base/java.net.Socket.connect(Socket.java:633) ~[na:na]
at
com.mysql.cj.protocol.StandardSocketFactory.connect(StandardSocketFactory.java:153)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.protocol.a.NativeSocketConnection.connect(NativeSocketConnection.java:
63) ~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.NativeSession.connect(NativeSession.java:120) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.ConnectionImpl.connectOneTryOnly(ConnectionImpl.java:948)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:818)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:448) ~[mysql-
connector-java-8.0.29.jar!/:8.0.29]
at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:198)
~[mysql-connector-java-8.0.29.jar!/:8.0.29]
at
com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
~[HikariCP-4.0.3.jar!/:na]
at com.zaxxer.hikari.pool.HikariPool.access$100(HikariPool.java:71)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:726)
~[HikariCP-4.0.3.jar!/:na]
at
com.zaxxer.hikari.pool.HikariPool$PoolEntryCreator.call(HikariPool.java:712)
~[HikariCP-4.0.3.jar!/:na]
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java
:1136) ~[na:na]
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.jav
a:635) ~[na:na]
at java.base/java.lang.Thread.run(Thread.java:833) ~[na:na]

2023-04-20 15:36:09.027 DEBUG 1453 --- [nio-5151-exec-1]


o.s.security.web.FilterChainProxy : Securing GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:09.027 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Set SecurityContextHolder to empty
SecurityContext
2023-04-20 15:36:09.027 DEBUG 1453 --- [nio-5151-exec-1]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:09.027 DEBUG 1453 --- [nio-5151-exec-1]
o.s.security.web.FilterChainProxy : Secured GET /error?
pageNumber=0&pageSize=4&sortBy=addedDate&sortDir=desc
2023-04-20 15:36:09.029 DEBUG 1453 --- [nio-5151-exec-8]
o.s.s.w.a.AnonymousAuthenticationFilter : Set SecurityContextHolder to anonymous
SecurityContext
2023-04-20 15:36:09.029 DEBUG 1453 --- [nio-5151-exec-8]
o.s.security.web.FilterChainProxy : Secured GET /error
2023-04-20 15:36:09.031 DEBUG 1453 --- [nio-5151-exec-6]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.032 DEBUG 1453 --- [nio-5151-exec-1]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request
2023-04-20 15:36:09.033 DEBUG 1453 --- [nio-5151-exec-8]
s.s.w.c.SecurityContextPersistenceFilter : Cleared SecurityContextHolder to
complete request

You might also like