Java Developer
Авторский канал действующего разработчика — интересные заметки, новые технологии, библиотеки и фреймворки Сотрудничество: @bape_ads Прайс: @bape_media РКН: https://clck.ru/3GHfTK Реклама на бирже: https://telega.in/c/java_tg
Show more📈 Analytical overview of Telegram channel Java Developer
Channel Java Developer (@java_tg) in the Russian language segment is an active participant. Currently, the community unites 14 916 subscribers, ranking 8 386 in the Technologies & Applications category and 43 747 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 14 916 subscribers.
According to the latest data from 29 August, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -76 over the last 30 days and by -2 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 11.36%. Within the first 24 hours after publication, content typically collects 6.15% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 696 views. Within the first day, a publication typically gains 918 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 10.
- Thematic interests: Content is focused on key topics such as собеседование, developer, redis, интерфейс, boot.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Авторский канал действующего разработчика — интересные заметки, новые технологии, библиотеки и фреймворки
Сотрудничество: @bape_ads
Прайс: @bape_media
РКН: https://clck.ru/3GHfTK
Реклама на бирже: https://telega.in/c/java_tg”
Thanks to the high frequency of updates (latest data received on 30 August, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
contains() для элемента, который есть в ArrayList?
Ответ: O(N). Время поиска элемента линейно пропорционально количеству элементов в списке.
tags: #собеседование
📱 Java Developer | Чат<dependency>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
<version>1.5.5.Final</version>
</dependency>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct-processor</artifactId>
<version>1.5.5.Final</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
Ускоряет разработку, избавляя от шаблонного и часто ошибочного кода при преобразовании объектов.
📱 Ссылка на GitHub
📁 Документация
tags: #полезное
📱 Java Developer | ЧатSELECT до борьбы с N+1.
Автор на примерах разбирает, когда использовать getReferenceById, @Version, fetch join и @DynamicUpdate, чтобы ускорить взаимодействие с базой и избежать скрытых тормозов.
⛓ Читать статью
🔖 Предыдущая часть — КЛИКtags: #статья 📱 Java Developer | Чат
@Transactional не работает при вызове метода внутри того же класса?
Ответ: Spring активирует @Transactional через прокси, оборачивающие бины и перехватывающие внешние вызовы. Но если метод вызывается изнутри того же класса, прокси не используется — происходит прямой вызов, и аннотация не срабатывает.
Чтобы транзакция была активна, метод должен вызываться через прокси, например, путём внедрения собственного бина или получения его из ApplicationContext. Если требуется перехват внутренних вызовов, стоит использовать AspectJ — он работает на уровне байткода и не зависит от прокси-механизма.
tags: #собеседование
📱 Java Developer | ЧатSystem.exit() или закрытии окна.
Thread hook = new Thread(() -> System.out.println("Shutting down, bye!"));
Runtime.getRuntime().addShutdownHook(hook);
Все зарегистрированные потоки запускаются параллельно, и JVM дожидается, пока они завершат выполнение.Важно: при аварийном завершении — через
kill -9, Runtime.halt() или при отключении питания — shutdown hooks не сработают.
❤ — если было полезно
tags: #обучение
📱 Java Developer | Чат