← Каталог
Справочник по конфигурациям в Java — 9.5. CDI-инъекция — `@ConfigProperty`
Фрагмент из «Справочник по конфигурациям в Java»: 9.5. CDI-инъекция — `@ConfigProperty`.
@ApplicationScoped
public class Service {
@Inject
@ConfigProperty(name = "app.name")
String appName;
@Inject
@ConfigProperty(name = "app.ports")
List<Integer> ports;
@Inject
@ConfigProperty(name = "app.enabled", defaultValue = "true")
boolean enabled;
@Inject
@ConfigProperty(name = "app.timeout")
Duration timeout; // "30s" → Duration.ofSeconds(30)
} @ApplicationScoped
public class Service {
@Inject
@ConfigProperty(name = "app.name")
String appName;
@Inject
@ConfigProperty(name = "app.ports")
List<Integer> ports;
@Inject
@ConfigProperty(name = "app.enabled", defaultValue = "true")
boolean enabled;
@Inject
@ConfigProperty(name = "app.timeout")
Duration timeout; // "30s" → Duration.ofSeconds(30)
}