ДОАВИЛ В ГРАДЛЕ ЛОКАЛЬНЫЙ ЗАПУСК

This commit is contained in:
AidarKC
2026-04-07 14:25:49 +03:00
parent e2a9caa07d
commit 0b7ad79032
3 changed files with 90 additions and 1 deletions
@@ -42,6 +42,8 @@ public final class AppConfig {
/** Вернёт значение строки или null, если параметр не найден */
public String getParam(String name) {
String fromSystem = System.getProperty(name);
if (fromSystem != null) return fromSystem;
return properties.getProperty(name);
}