ar
Feedback
Чашечка Java

Чашечка Java

الذهاب إلى القناة على Telegram

Лучшие материалы по Java на русском и английском Разместить рекламу: @tproger_sales_bot Правила общения: https://tprg.ru/rules Другие каналы: @tproger_channels

إظهار المزيد
8 544
المشتركون
-224 ساعات
-57 أيام
-2730 أيام
أرشيف المشاركات
The Feed Reader Bot (@TheFeedReaderBot) будет отправлять сообщения в этот канал.

How to Find Duplicate Characters in String [Java Coding Problems] Hello guys, today's programming exercise is to write a prog
How to Find Duplicate Characters in String [Java Coding Problems] Hello guys, today's programming exercise is to write a program to find repeated characters in a String. For example, if given input to your program is "Java", it should print all... Read: http://www.java67.com/2014/03/how-to-find-duplicate-characters-in-String-Java-program.html

stallers of Microsoft Build of OpenJDK can be downloaded, or installed through the usual package managers: winget, Homebrew, apt/yum. All container images have also been updated accordingly. We also provide vanity URLs for automation, to always point to the latest minor version of a given major version of OpenJDK. Read: Additions and Updates to Microsoft Build of OpenJDK.

Additions and Updates to Microsoft Build of OpenJDK Today we are excited to share two new additions to the Microsoft Build of OpenJDK family of LTS (Long Term Support) binaries: OpenJDK 11 and OpenJDK 17 binaries for Alpine Linux, and OpenJDK 11 for macOS on Apple Silicon. Other platforms have also been updated to the latest versions of OpenJDK following the tags 11.0.14 and 17.0.2. As previously stated, Microsoft no longer publishes updates to OpenJDK 16 as this is not an LTS version. Microsoft Build of OpenJDK for Alpine Linux Java developers familiar with Azure App Service may be aware that the service makes use of Alpine Linux for Linux-based deployments. As part of Microsoft’s plan to roll out Microsoft Build of OpenJDK, and Eclipse Temurin to Azure services, the Microsoft Java Engineering Group backported Project Portola to OpenJDK 11. Microsoft has also submitted a patch of the backport for OpenJDK 8 to the Eclipse Adoptium project. Project Portola implemented changes to OpenJDK that allow the project to be compiled with the musl C library. Microsoft Build of OpenJDK 17 now also has a binary for Alpine Linux. Microsoft is collaborating with other OpenJDK vendors, some of whom have already worked on similar backports, to propose these changes to the mainline of the OpenJDK 8 (jdk8u) and OpenJDK 11 (jdk11u) branches. The source code of the changes required to enable this backport can be found on the download page of the Microsoft Build of OpenJDK. Early Access of OpenJDK 11 for macOS on Apple Silicon In 2021, Microsoft proposed and implemented JEP 388 Windows/AArch64 Port, which was completed and released as part of OpenJDK 16. This work helped pave the way for the implementation of the JEP 391 macOS/AArch64 Port. Today we are happy to share that Microsoft has backported JEP 391 to produce and release an Early Access binary of OpenJDK 11 for macOS on Apple Silicon. The source code of the changes required to enable this backport can be found on the download page of the Microsoft Build of OpenJDK. Zulu for Azure EOL and Legacy Container Images As previously announced last year on June 30th, 2021, the Zulu for Azure builds of OpenJDK are no longer supported or updated by Microsoft and Azul Systems since January 1st, 2022, and therefore customers should upgrade as soon as possible to other OpenJDK binaries such as Microsoft Build of OpenJDK, Temurin by Eclipse Adoptium, or Azul Zulu Builds of OpenJDK. The following container images are no longer updated: * mcr.microsoft.com/java/jdk * mcr.microsoft.com/java/jre * mcr.microsoft.com/java/jre-headless * mcr.microsoft.com/java/maven * mcr.microsoft.com/java/tomcat Starting July 1st, 2022, these images may no longer be available on the Microsoft Container Registry (MCR). Please update your Dockerfiles accordingly and in advance of this date. Learn more Binaries and in[...]

photo content

⚠️ The feed "Mkyong.com" doesn't seem to work. Check it, and remove it if necessary

Хотите освоить подход DataOps? Сделайте шаг к изучению этой области 3 февраля в 20:00! Для вас в OTUS пройдет вебинар «Облака и on-premise решения в обработке данных». Занятие проведет Егор Матешук, CDO AdTech-компании Квант. Вместе с преподавателем мы рассмотрим основные технологические платформы для построения систем обработки данных. Ответят на вопросы: - Какие варианты есть для развертывания on-premise? - Какие инструменты предлагают облачные провайдеры? - Какие тенденции появились в платформах в последние годы? Пройдите вступительный тест, чтобы зарегистрироваться на урок - https://otus.pw/CK8O/ #ad

Как я запускал Spring Cloud Меня зовут Аксёнов Вячеслав, я старший бэкенд Java/Kotlin разработчик в крупном энтерпрайзе. Одна
Как я запускал Spring Cloud Меня зовут Аксёнов Вячеслав, я старший бэкенд Java/Kotlin разработчик в крупном энтерпрайзе. Однажды я попал на проект, полный микросервисов, в котором за конфигурацию отвечала такая штука как Spring Cloud. Чтобы разобраться как именно это работает я исследовал и прикрутил этот диковенный элемент к одному своему пет проекту. И в этой статье я пошагово покажу как я это сделал Читать: https://habr.com/ru/post/649131/?utm_campaign=649131

Java: есть ли жизнь на десктопе? Привет! Я Виктор Барсуков, Java-разработчик в Lamoda. В этой статье хочу рассказать о своем
Java: есть ли жизнь на десктопе? Привет! Я Виктор Барсуков, Java-разработчик в Lamoda. В этой статье хочу рассказать о своем опыте разработки десктопного Java-приложения в рамках пет-проджекта. Что из этого получилось и что можно было бы сделать иначе. Читать: https://habr.com/ru/post/648949/?utm_campaign=648949

Top 21 Frequently Asked Java Interview Questions with Answers If you have been to a couple of Java interviews then you know t
Top 21 Frequently Asked Java Interview Questions with Answers If you have been to a couple of Java interviews then you know that there are some questions that keep repeating like the difference between == and equals() method and many of its popular cousins like... Read: http://www.java67.com/2014/07/21-frequently-asked-java-interview-questions-answers.html

How to check if a node exists in a binary tree or not in Java? Example Tutorial Hello guys, if you are wondering how to check
How to check if a node exists in a binary tree or not in Java? Example Tutorial Hello guys, if you are wondering how to check if a given node exists in a given binary tree or not then you have come to the right place. I have been sharing a lot of binary tree-based programming... Read: http://www.java67.com/2022/02/how-to-check-if-node-exists-in-binary-tree-in-java.html

Подборка актуальных вакансий для Java-разработчиковJava-разработчик Где: Москва, можно удалённо Опыт: От 1 года Сколько: По итогам собеседования — Java-разработчик Где: Москва Опыт: От 3 лет Сколько: От 270 000 до 350 000 ₽ — Java-разработчик Где: Москва, можно удалённо Опыт: От 3 лет Сколько: По итогам собеседования #вакансии #работа

How to Implement Binary Tree InOrder traversal in Java without Recursion - Example Tutorial I have been writing about differe
How to Implement Binary Tree InOrder traversal in Java without Recursion - Example Tutorial I have been writing about different binary tree traversal algorithms and so far we have seen both pre-order and post-order algorithms to traverse a binary tree and today you'll learn about the... Read: http://www.java67.com/2016/09/inorder-traversal-of-binary-tree-java-example.html

Java News Roundup: Loom and Panama Updates, Groovy 4.0, GraalVM 22.0 CE, Jakarta EE RPC This week's Java roundup for January
Java News Roundup: Loom and Panama Updates, Groovy 4.0, GraalVM 22.0 CE, Jakarta EE RPC This week's Java roundup for January 24th, 2021, features news from OpenJDK, JDK 18, JDK 19, Projects Loom and Panama, Jakarta EE, Groovy 4.0, Spring Framework updates, Micronaut 3.3.0, GraalVM 22.0 CE, Liberica NIK, MicroProfile Reactive Streams Operators 3.0-RC1, Hibernate updates, JHipster 7.6, IntelliJ IDEA 2021.3.2, JReleaser early-access, Apache Camel and Camel K, and Foojay.io at FOSDEM. By Michael Redlich Read: https://www.infoq.com/news/2022/01/java-news-roundup-jan24-2022/

Top 40 Core Java Interview Questions Answers from Telephonic Round [UPDATED] Here is another post about preparing for Java In
Top 40 Core Java Interview Questions Answers from Telephonic Round [UPDATED] Here is another post about preparing for Java Interviews, this time we will take a look at 40 core Java questions from the telephonic round of Java Programming interviews. Phone interviews are... Read: http://www.java67.com/2015/03/top-40-core-java-interview-questions-answers-telephonic-round.html

Уж+ёж: реактивные компоненты в сервлетном окружении (2/3) В предыдущей заметке было показано несколько подходов к управлению
Уж+ёж: реактивные компоненты в сервлетном окружении (2/3) В предыдущей заметке было показано несколько подходов к управлению зависимостями в «гибридных» приложениях (использующих части сервлетного и реактивного стеков), а также вариант реализации универсального механизма для поддержки MDC-меток в логах. А в этой заметке речь пойдёт о том, как обеспечить доступность текущего обрабатываемого HTTP-запроса из любой точки бизнес-логики. Читать: https://habr.com/ru/post/648821/?utm_campaign=648821

How to remove duplicate characters from String in Java? [Solved] Hello all, how are you doing? It's been a long since I have
How to remove duplicate characters from String in Java? [Solved] Hello all, how are you doing? It's been a long since I have shared a coding problem from the interview. The last one I discussed was about finding the Nth Fibonacci number, one of the popular... Read: http://www.java67.com/2019/11/how-to-remove-duplicate-characters-from-string-in-java.html

Агрегация данных во времени с Kafka Streams В FunBox мы делаем продукты для мобильных операторов: различные порталы, геосерви
Агрегация данных во времени с Kafka Streams В FunBox мы делаем продукты для мобильных операторов: различные порталы, геосервисы, платежи, мобильную рекламу и многое другое.  Один из наших проектов построен на микросервисной архитектуре. Основная функциональность связана с обработкой потоков событий, поэтому мы выбрали событийно-ориентированную архитектуру. Для организации централизованного, масштабируемого и быстрого механизма обмена сообщениями используем Apache Kafka. Это популярная платформа для решения подобных задач, плюс у неё есть интерфейс для организации потоковой обработки событий. Читать: https://habr.com/ru/post/648915/?utm_campaign=648915

3 Ways to change Embedded Tomcat Server Port in Spring Boot Application - Example If you know Spring Boot really simplifies t
3 Ways to change Embedded Tomcat Server Port in Spring Boot Application - Example If you know Spring Boot really simplifies the Java web development by embedding essential libraries as well as a tomcat server to run Java web applications. By default, this tomcat server listens on... Read: http://www.java67.com/2019/07/spring-boot-3-ways-to-change-port-of-tomcat.html

Хотите глубже погрузиться в тему оркестраций? Приходите 1 февраля в 20:00 на бесплатный вебинар, на котором опытный эксперт разберёт понятие платформы оркестрации, какие решения есть сегодня на рынке и даже углубится в практический пример использования Apache Airflow. Регистрируйтесь, пройдя вступительный тест: https://otus.pw/UZ34/ Это #партнёрский пост