龚焕茏
2024-07-03 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
2023-06-07 14:21:27.153  INFO 19912 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:21:27.162  INFO 19912 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 19912 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:21:27.163  INFO 19912 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:21:27.237  INFO 19912 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:21:27.268  INFO 19912 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:21:30.239  WARN 19912 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:21:30.267  INFO 19912 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:21:30.267  INFO 19912 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2997 ms
2023-06-07 14:21:31.630  INFO 19912 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:21:31.818  INFO 19912 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@49a48841, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@57cb0d2b, org.springframework.security.web.context.SecurityContextPersistenceFilter@735fb3f8, org.springframework.security.web.header.HeaderWriterFilter@3251f098, org.springframework.web.filter.CorsFilter@41d1a487, org.springframework.security.web.authentication.logout.LogoutFilter@238cc9f8, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@7043fac7, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@5cf217fa, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@6de8aae7, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@24be9743, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@5e585e23, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@29e57723, org.springframework.security.web.session.SessionManagementFilter@482ec2f3, org.springframework.security.web.access.ExceptionTranslationFilter@3f4ef1b0, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6068d200]
2023-06-07 14:21:31.845  INFO 19912 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:21:31.881  WARN 19912 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:21:31.894  INFO 19912 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:21:31.922 ERROR 19912 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:27:50.433  INFO 26008 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:27:50.438  INFO 26008 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 26008 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:27:50.438  INFO 26008 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:27:50.507  INFO 26008 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:27:50.508  INFO 26008 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:27:52.316  WARN 26008 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:27:52.342  INFO 26008 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:27:52.342  INFO 26008 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1834 ms
2023-06-07 14:27:53.605  INFO 26008 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:27:53.782  INFO 26008 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@7ae06d3f, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4ee270b0, org.springframework.security.web.context.SecurityContextPersistenceFilter@72936bba, org.springframework.security.web.header.HeaderWriterFilter@7efa03b6, org.springframework.web.filter.CorsFilter@5adaf6ac, org.springframework.security.web.authentication.logout.LogoutFilter@2d1f03db, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@675bce0d, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6f02e0ac, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@2df87eb5, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@7c3d36d, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@16c823c4, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@7802597c, org.springframework.security.web.session.SessionManagementFilter@50ef2ae6, org.springframework.security.web.access.ExceptionTranslationFilter@1c4df17c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@61cc4f67]
2023-06-07 14:27:53.806  INFO 26008 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:27:53.846  WARN 26008 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:27:53.859  INFO 26008 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:27:53.886 ERROR 26008 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:40:29.205  INFO 3036 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:40:29.213  INFO 3036 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 3036 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:40:29.214  INFO 3036 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:40:29.367  INFO 3036 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:40:29.367  INFO 3036 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:40:31.824  WARN 3036 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:40:31.852  INFO 3036 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:40:31.852  INFO 3036 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2484 ms
2023-06-07 14:40:33.158  INFO 3036 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:40:33.327  INFO 3036 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@43054e86, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4f4e74d8, org.springframework.security.web.context.SecurityContextPersistenceFilter@1ab5a53e, org.springframework.security.web.header.HeaderWriterFilter@1aa641d, org.springframework.web.filter.CorsFilter@757aebdc, org.springframework.security.web.authentication.logout.LogoutFilter@4aa0eb5f, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@2ddeef4f, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@6132fd05, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@41e7409, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@4df40d79, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@1ef03d65, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@669f1411, org.springframework.security.web.session.SessionManagementFilter@5886c980, org.springframework.security.web.access.ExceptionTranslationFilter@61b9d4c0, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@67f58ed6]
2023-06-07 14:40:33.351  INFO 3036 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:40:33.390  WARN 3036 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:40:33.404  INFO 3036 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:40:33.428 ERROR 3036 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:43:18.964  INFO 19784 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:43:18.968  INFO 19784 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 19784 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:43:18.970  INFO 19784 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:43:19.075  INFO 19784 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:43:19.075  INFO 19784 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:43:20.946  WARN 19784 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:43:20.974  INFO 19784 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:43:20.974  INFO 19784 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1898 ms
2023-06-07 14:43:22.216  INFO 19784 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:43:22.409  INFO 19784 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@70295a5e, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@404d2253, org.springframework.security.web.context.SecurityContextPersistenceFilter@16f4ce41, org.springframework.security.web.header.HeaderWriterFilter@60735341, org.springframework.web.filter.CorsFilter@5638b4e, org.springframework.security.web.authentication.logout.LogoutFilter@17904ade, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@764f484a, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@18a697e5, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@8ec5f7c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1d04ee33, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@1be91a43, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@6ecfcb1c, org.springframework.security.web.session.SessionManagementFilter@49270897, org.springframework.security.web.access.ExceptionTranslationFilter@39b7ac93, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@42ea8a52]
2023-06-07 14:43:22.435  INFO 19784 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:43:22.472  WARN 19784 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:43:22.487  INFO 19784 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:43:22.515 ERROR 19784 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:44:23.662  INFO 26540 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:44:23.667  INFO 26540 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 26540 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:44:23.667  INFO 26540 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:44:23.760  INFO 26540 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:44:23.760  INFO 26540 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:44:25.162  WARN 26540 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:44:25.181  INFO 26540 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:44:25.181  INFO 26540 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1421 ms
2023-06-07 14:44:26.315  INFO 26540 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:44:26.477  INFO 26540 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@62f2e4ac, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@56820b5e, org.springframework.security.web.context.SecurityContextPersistenceFilter@1076c891, org.springframework.security.web.header.HeaderWriterFilter@6043c7af, org.springframework.web.filter.CorsFilter@51673555, org.springframework.security.web.authentication.logout.LogoutFilter@75d6ebaf, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@613ba02a, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@3651785d, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@144861c7, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@121ffe9d, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@874461, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1f86f037, org.springframework.security.web.session.SessionManagementFilter@16917e01, org.springframework.security.web.access.ExceptionTranslationFilter@731269e8, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@6a95395e]
2023-06-07 14:44:26.501  INFO 26540 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:44:26.548  WARN 26540 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:44:26.564  INFO 26540 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:44:26.589 ERROR 26540 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:45:34.081  INFO 11840 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:45:34.086  INFO 11840 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 11840 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:45:34.086  INFO 11840 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:45:34.189  INFO 11840 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:45:34.189  INFO 11840 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:45:35.490  WARN 11840 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:45:35.509  INFO 11840 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:45:35.509  INFO 11840 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 1319 ms
2023-06-07 14:45:36.554  INFO 11840 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:45:36.707  INFO 11840 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1d06fba0, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6295ee7d, org.springframework.security.web.context.SecurityContextPersistenceFilter@7f7618eb, org.springframework.security.web.header.HeaderWriterFilter@597f6269, org.springframework.web.filter.CorsFilter@3ee9527b, org.springframework.security.web.authentication.logout.LogoutFilter@8afe439, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@3f2696df, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@7f1545b6, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@a26c0ac, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3d49a58c, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@4fa5f1b3, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@72773a82, org.springframework.security.web.session.SessionManagementFilter@2e8ec683, org.springframework.security.web.access.ExceptionTranslationFilter@3b427a06, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4324c7f8]
2023-06-07 14:45:36.728  INFO 11840 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:45:36.768  WARN 11840 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:45:36.783  INFO 11840 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:45:36.811 ERROR 11840 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.
 
2023-06-07 14:49:01.404  INFO 25504 --- [background-preinit] o.h.validator.internal.util.Version      : HV000001: Hibernate Validator 6.2.5.Final
2023-06-07 14:49:01.420  INFO 25504 --- [restartedMain] com.mindskip.xzs.XzsApplication          : Starting XzsApplication using Java 1.8.0_361 on DESKTOP-7A2KHS1 with PID 25504 (E:\ycll\qyksxt\target\classes started by qirong in E:\ycll\qyksxt)
2023-06-07 14:49:01.421  INFO 25504 --- [restartedMain] com.mindskip.xzs.XzsApplication          : The following 1 profile is active: "dev"
2023-06-07 14:49:01.563  INFO 25504 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2023-06-07 14:49:01.563  INFO 25504 --- [restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2023-06-07 14:49:03.715  WARN 25504 --- [restartedMain] io.undertow.websockets.jsr               : UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
2023-06-07 14:49:03.744  INFO 25504 --- [restartedMain] io.undertow.servlet                      : Initializing Spring embedded WebApplicationContext
2023-06-07 14:49:03.744  INFO 25504 --- [restartedMain] w.s.c.ServletWebServerApplicationContext : Root WebApplicationContext: initialization completed in 2178 ms
2023-06-07 14:49:05.086  INFO 25504 --- [restartedMain] o.s.b.d.a.OptionalLiveReloadServer       : LiveReload server is running on port 35729
2023-06-07 14:49:05.303  INFO 25504 --- [restartedMain] o.s.s.web.DefaultSecurityFilterChain     : Will secure any request with [org.springframework.security.web.session.DisableEncodeUrlFilter@1dc8fb76, org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@6bb3e4f6, org.springframework.security.web.context.SecurityContextPersistenceFilter@35f647bf, org.springframework.security.web.header.HeaderWriterFilter@1b88cbaf, org.springframework.web.filter.CorsFilter@2e9456d3, org.springframework.security.web.authentication.logout.LogoutFilter@289860ce, com.mindskip.xzs.configuration.spring.security.RestLoginAuthenticationFilter@584e73f3, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@24311c9b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@316c344e, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@42b71dee, org.springframework.security.web.authentication.rememberme.RememberMeAuthenticationFilter@5d7f1768, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@5cd01e2f, org.springframework.security.web.session.SessionManagementFilter@3acd243e, org.springframework.security.web.access.ExceptionTranslationFilter@1ac3cba4, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@52581288]
2023-06-07 14:49:05.338  INFO 25504 --- [restartedMain] pertySourcedRequestMappingHandlerMapping : Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)]
2023-06-07 14:49:05.400  WARN 25504 --- [restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Invocation of init method failed; nested exception is org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration': Requested bean is currently in creation: Is there an unresolvable circular reference?
2023-06-07 14:49:05.424  INFO 25504 --- [restartedMain] ConditionEvaluationReportLoggingListener : 
 
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-07 14:49:05.464 ERROR 25504 --- [restartedMain] o.s.b.d.LoggingFailureAnalysisReporter   : 
 
***************************
APPLICATION FAILED TO START
***************************
 
Description:
 
The dependencies of some of the beans in the application context form a cycle:
 
┌──->──┐
|  com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration
└──<-──┘
 
 
Action:
 
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true.