Skip to content

Instantly share code, notes, and snippets.

@stella6767
Created August 18, 2022 02:38
Show Gist options
  • Save stella6767/f38c81d6828f5b644ac3465bc59f65be to your computer and use it in GitHub Desktop.
Save stella6767/f38c81d6828f5b644ac3465bc59f65be to your computer and use it in GitHub Desktop.
Inject into static field Kotlin/Spring Boot
@Component
class GlobalValue {
companion object {
@JvmField
lateinit var DATABASE: String
}
@Value("\${mongodb.db}")
fun setDatabase(db: String) {
DATABASE = db;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment