2021-05-18 10:39:20 +07:00
|
|
|
package com.cubetiqs.web
|
|
|
|
|
2022-04-11 09:03:04 +07:00
|
|
|
import com.cubetiqs.web.annotation.FunctionComponent
|
2021-05-18 10:39:20 +07:00
|
|
|
import org.springframework.context.annotation.Lazy
|
|
|
|
|
|
|
|
@FunctionComponent
|
|
|
|
@Lazy(false)
|
|
|
|
class StaticContextInitializer {
|
|
|
|
init {
|
|
|
|
println("Static context is loaded...!")
|
|
|
|
}
|
|
|
|
}
|