“Kotlin -Abhängigkeitsinjektion” Code-Antworten

Kotlin -Abhängigkeitsinjektion

class Bug {
   lateinit var desc: String;
   lateinit var latestComment: String;
   
    // a setter method so that the Spring container can inject desc and latestComment dependencies
   @Autowired
   fun updateBug(desc: String, latestComment: String) {
       this.desc = desc;
       this.latestComment = latestComment;
   }
}
Smoggy Snail

Kotlin -Abhängigkeitsinjektion

@Component
class Car @Autowired constructor (private val owner: Owner) {
    fun getOwner() : Owner {
        return owner
    }
}

class Owner(private val name: String, private val address: String) {}
Smoggy Snail

Ähnliche Antworten wie “Kotlin -Abhängigkeitsinjektion”

Fragen ähnlich wie “Kotlin -Abhängigkeitsinjektion”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen