/
NikolayIvkin
/
tutorials1
Обзор
Документация
Войти
/
NikolayIvkin
/
tutorials1
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spring-boot-modules/spring-boot-annotations/src/main/java/com/baeldung/annotations/Biker.java
24 строки
542 B
dupirefr
* Moved annotations articles to new spring-boot-annotations module
17 фев 2020, 09:25
17 фев 2020, 09:25
6cd76fb
Код
Авторство
О чём код?
package com.baeldung.annotations; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Component; @Component public class Biker { @Autowired @Qualifier("bike") private Vehicle vehicle; @Autowired public Biker(@Qualifier("bike") Vehicle vehicle) { this.vehicle = vehicle; } @Autowired public void setVehicle(@Qualifier("bike") Vehicle vehicle) { this.vehicle = vehicle; } }