/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/java/java-503-304-001/main.java
17 строк
360 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
public interface Notifier { void send(String message); } @Component("emailNotifier") class EmailNotifier implements Notifier { public void send(String message) {} } @Component class AlertService { private final Notifier notifier; public AlertService(@Qualifier("emailNotifier") Notifier notifier) { this.notifier = notifier; } }