12 lines
262 B
Kotlin
12 lines
262 B
Kotlin
package com.cubetiqs.web
|
|
|
|
import com.cubetiqs.web.annotation.FunctionComponent
|
|
import org.springframework.context.annotation.Lazy
|
|
|
|
@FunctionComponent
|
|
@Lazy(false)
|
|
class StaticContextInitializer {
|
|
init {
|
|
println("Static context is loaded...!")
|
|
}
|
|
} |