(개념) Bean LifeCycle과 Lazy initailization
(개념) Bean LifeCycle과 Lazy initailization
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.2.4.RELEASE)
2020-03-13 11:05:18.396 INFO 16892 --- [ restartedMain] com.example.tstory.TStoryApplication : Starting TStoryApplication on DESKTOP-HR4H108 with PID 16892 (C:\ideaprojects\self\t-story\out\production\classes started by absin in C:\ideaprojects\self\t-story)
2020-03-13 11:05:18.410 INFO 16892 --- [ restartedMain] com.example.tstory.TStoryApplication : No active profile set, falling back to default profiles: default
2020-03-13 11:05:18.505 INFO 16892 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable
2020-03-13 11:05:18.505 INFO 16892 --- [ restartedMain] .e.DevToolsPropertyDefaultsPostProcessor : For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG'
2020-03-13 11:05:19.720 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : TestService Bean은 지금 막 태어났습니다
2020-03-13 11:05:19.729 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:19.729 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:19.785 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:19.785 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:19.921 INFO 16892 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 8080 (http)
2020-03-13 11:05:19.937 INFO 16892 --- [ restartedMain] o.apache.catalina.core.StandardService : Starting service [Tomcat]
2020-03-13 11:05:19.937 INFO 16892 --- [ restartedMain] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.30]
2020-03-13 11:05:20.066 INFO 16892 --- [ restartedMain] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2020-03-13 11:05:20.066 INFO 16892 --- [ restartedMain] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1561 ms
2020-03-13 11:05:20.071 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.071 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.073 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.074 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.093 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.093 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.100 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.100 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.113 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.114 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.124 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.124 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.127 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.127 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.141 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.141 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.147 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.147 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.165 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.167 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.169 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.170 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.175 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.176 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.177 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.178 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.181 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.182 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.227 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.230 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.232 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.233 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.245 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.245 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.249 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.250 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.251 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.251 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.252 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.252 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.253 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.253 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.253 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.253 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.255 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.255 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.276 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.276 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.276 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.276 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.277 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.277 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.278 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.278 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.278 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.278 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.279 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.279 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.281 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.281 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.285 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.285 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.285 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.285 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.291 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.301 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.301 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.301 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.302 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.302 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.304 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.304 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.318 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.318 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.318 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.318 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.324 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.324 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.325 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.325 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.325 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.325 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.332 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.332 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.333 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.333 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.365 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.366 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.367 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.367 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.379 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.379 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.388 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.388 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.393 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.393 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.413 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.414 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.420 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.421 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.431 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.431 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.433 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.434 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.436 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.436 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.438 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.438 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.440 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.440 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.446 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.447 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.447 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.448 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.453 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.453 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.457 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.457 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.457 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.457 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.459 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.460 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.462 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.462 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.488 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.488 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.490 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.490 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.496 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.496 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.510 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.511 INFO 16892 --- [ restartedMain] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor'
2020-03-13 11:05:20.511 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.522 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.598 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.604 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.604 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.630 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.697 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.709 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.710 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.714 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.714 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.716 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.717 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.721 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.722 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.727 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.728 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.730 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.734 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.754 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.755 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.755 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.755 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.757 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.757 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.759 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.759 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.760 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.760 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.760 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.760 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.771 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.771 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.773 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.773 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.782 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.783 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.786 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.786 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.792 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.792 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.793 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.793 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.815 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.815 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.830 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.830 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.835 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.835 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.837 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.837 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.845 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.845 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.852 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.852 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.853 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.853 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.855 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.856 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.859 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.860 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.885 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.885 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.892 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.893 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.893 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.894 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.897 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.898 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.907 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.908 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.908 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.908 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.908 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.908 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.909 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.909 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.920 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.921 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.921 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.921 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.922 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.922 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.924 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.924 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.926 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.927 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.930 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.930 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.933 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.933 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.937 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.937 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.937 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.937 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.937 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.939 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.945 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.945 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.946 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.946 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.947 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.947 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.948 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.948 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.948 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.948 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.951 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.951 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.956 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.956 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.957 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.957 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.960 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.961 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.962 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.962 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.965 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.965 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.967 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.975 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.976 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.976 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.976 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.977 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.981 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.981 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.982 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.984 INFO 16892 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2020-03-13 11:05:20.985 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.986 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.986 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:20.987 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessBeforeInitialization) called
2020-03-13 11:05:20.987 INFO 16892 --- [ restartedMain] com.example.tstory.service.TestService : (TestService.postProcessAfterInitialization) called
2020-03-13 11:05:21.077 INFO 16892 --- [ restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 8080 (http) with context path ''
2020-03-13 11:05:21.088 INFO 16892 --- [ restartedMain] com.example.tstory.TStoryApplication : Started TStoryApplication in 3.592 seconds (JVM running for 6.244)
Disconnected from the target VM, address: '127.0.0.1:53825', transport: 'socket'
2020-03-13 11:05:27.319 INFO 16892 --- [extShutdownHook] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor'
2020-03-13 11:05:27.321 INFO 16892 --- [extShutdownHook] com.example.tstory.service.TestService : TestService Bean은 이제 죽은 목숨 입니다.
Process finished with exit code 130
from http://calgaryhomeless.tistory.com/11 by ccl(A) rewrite - 2020-03-13 11:20:26
댓글
댓글 쓰기