Чашечка Java
Открыть в Telegram
Лучшие материалы по Java на русском и английском Разместить рекламу: @tproger_sales_bot Правила общения: https://tprg.ru/rules Другие каналы: @tproger_channels
Больше8 539
Подписчики
Нет данных24 часа
-137 дней
-2930 день
Архив постов
8 538
Eclipse Foundation’s Adoptium Releases First Temurin JDK Builds
AdoptOpenJDK moved to the Eclipse Foundation as the Adoptium Working Group. Adoptium provides TCK-certified runtimes, based upon OpenJDK, called Eclipse Temurin. Adoptium provides Temurin binaries every six months and maintenance/security updates every three months. Long Term Support (LTS) releases are produced for at least four years.
By Johan Janssen
Read: https://www.infoq.com/news/2021/10/adoptium-releases-temurin-jdk/
8 538
Top 5 Free HTML and CSS Courses for Frontend Developers in 2021 - Best of Lot
HTML and CSS are two pillars of web development, they are used to create web pages you see every day. HTML provides the structure to your web page, and CSS gives them the style to look better. If you...
Read: http://www.java67.com/2018/02/5-free-html-and-css-courses-to-learn-web-development.html
8 538
9 Tips to become a better Software Developer
Many of my readers, students, and programmers often asked me how to improve their programming skills, coding skills, or design skills. I know it's not easy to be a professional programmer. Apart...
Read: http://www.java67.com/2021/10/9-tips-to-become-better-software.html
8 538
Вы — космический барахольщик, и к вам в руки попадает таинственная коробочка. Откройте её секрет в квесте от Авиасейлс и поучаствуйте в розыгрыше!
Пройти квест: https://tprg.ru/Q8kF
Это #партнёрский пост
8 538
Java News Roundup: Hazelcast 5.0, Changes Coming to WildFly, Scene Builder 17, Hibernate ORM
This week's Java roundup for September 27th, 2021, features news from JDK 18, Hazelcast 5.0, point and release candidates of Hibernate ORM, Spring Initilizr 0.11.0, significant changes planned for WildFly, Open Liberty 21.0.0.10, Scene Builder 17, JReleaser 0.7.0, JDKMon 17.0.5, RefactorFirst 0.3.0, TornadoVM 0.11 and Sonatype dropping TLSv1.1 from their publishing servers.
By Michael Redlich
Read: https://www.infoq.com/news/2021/10/java-news-roundup-sep27-2021/
8 538
Что такое библиотека Pebble Templates и зачем она нужна?
Что такое библиотека Pebble Templates и зачем она нужна?
Читать: https://habr.com/ru/post/580884/?utm_campaign=580884
8 538
1-2 октября в Москве пройдёт финал ICPC и на него можно будет попасть бесплатно!
Зачем? Спикеры из Huawei, Jet Brains и других топовых компаний прочитают лекции о том, зачем технарям развивать soft skills и как построить успешную карьеру в IT.
Так что успевайте регистрироваться: https://usnd.to/XwHf
#ивент
8 538
Чтение из YAML в список Java объектов в Spring Boot
Эта заметка содержит примеры чтения списка или коллекций из файла YAML или файла свойств в виде экземпляров Java List или Set в Spring Boot.
Читать: https://habr.com/ru/post/580696/?utm_campaign=580696
8 538
Top 100 Data Structure and Algorithm Interview Questions for Java Programmers
Data structure and algorithms are a core part of any Programming job interview. It doesn't matter whether you are a C++ developer, a Java developer, or a Web developer working in JavaScript,...
Read: http://www.java67.com/2018/06/data-structure-and-algorithm-interview-questions-programmers.html
8 538
QuickSort Algorithm Example in Java using Recursion - Tutorial
The Quicksort algorithm is one of the very popular sorting algorithms in programming, often used to sort a large array of numbers. Though there is numerous algorithm available to sort a list of...
Read: http://www.java67.com/2014/07/quicksort-algorithm-in-java-in-place-example.html
8 538
How to remove a number from an Integer Array in Java? [Example Tutorial]
Hello guys, In the last article, you have learned how to reverse an array in place in Java, and today I have come back with another array-based coding interview question. It's also one of the...
Read: http://www.java67.com/2016/01/how-to-remove-numbers-from-array-in-java-example.html
8 538
Top 5 Courses & Practice Tests to Crack Professional Scrum Master (PSM) Certification in 2021
If you want to become a Scrum Master and grow your career, or preparing for Scrum Master Certification (PSM) in 2021 and looking for the best Scrum courses, classes, books, and tutorials, then you...
Read: http://www.java67.com/2021/03/best-professional-scrum-master-psm-certifcation-courses-and-tests.html
8 538
Gradle – Deploy Java web apps to Azure in one step!
We are excited to announce a new Gradle plugin for Azure Web Apps. Many Java on Azure developers use Gradle because of its customizable features and other advantages. With this new Gradle plugin, these developers can continue their Gradle journey and deploy Java Web apps to Azure in one single step.
gradle azureWebAppDeploy
Like Maven plugins for Azure services, the new Gradle plugin is:
* Simple to use: get infrastructure as code by defining everything in your “build.gradle” and applying changes to Azure with a single deploy task.
* Platform agnostic with zero set-up time: regardless Win, Linux, or Mac, declaring this plugin in your “build.gradle” will install it immediately.
* Flexible with authentication: use Azure CLI, OAuth or Service Principal to authenticate with Azure.
* CI/CD friendly: embed the plugin and task in your DevOps automation platform and tools like Azure Pipelines, Jenkins, or GitHub Actions.
The new plugin saves developers time by reducing a complex process to just one step. Try out with these simple instructions.
Try it now!
1. Add Gradle plugin for Azure Web App to your “build.gradle” file: plugins {
id "com.microsoft.azure.azurewebapp" version "1.1.0"
}
2. Configure this plugin in the “build.gradle” file or “gradle.properties”: azurewebapp {
subscription = '<your'
resourceGroup = '<your'
appName = '<your'
pricingTier = 'P1v2'
region = 'westus'
runtime {
os = 'Linux'
webContainer = 'Tomcat 9.0'
javaVersion = 'Java 8'
}
}
You can customize the task – for example, you can specify the App Service pricing tier, runtime stack, application settings, Azure regions, etc.
3. Deploy the app: gradle azureWebAppDeploy
Once deployment has completed, your application will be ready at: <your.azurewebsites.net
Deploy Java Web app using Gradle
Resources and feedback
* Learn more about advanced configurations.
* Check out other Azure tools for Java developers with IntelliJ, Eclipse, VS Code, Maven, etc.
* Report bugs or request new features on GitHub.
* Ask questions on Stack Overflow with tag [azure-java-tools].
Read: Gradle – Deploy Java web apps to Azure in one step!.
8 538
Top 18 CSS Interview Questions and Answers for Beginners and 1 to 2 years experienced
CSS is one of the three core technologies of the World Wide Web(WWW). A website is incomplete without CSS. The first feature of a website noted by the visitors is its presentation. It does not matter...
Read: http://www.java67.com/2021/09/-css-interview-questions-and-answers-for-.html
8 538
Сравниваем Java и Kotlin
Предлагаю начать с общих черт.
• Статическая типизация
• Бесплатны и с открытым кодом
• Код преобразуется в байт-код
• Интероперабельность
• Объектно-ориентированные языки программирования
Читать: https://habr.com/ru/post/580738/?utm_campaign=580738
8 538
Java 17: Foreign Functions & Memory API
На дворе Java 17, а значит пора разобрать еще один интересный JEP, а именно JEP 412: Foreign Function & Memory API, который является переосмыслением двух предыдущих: Foreign-Memory Access API и Foreign Linker API.
Новый API дает возможность взаимодействовать с кодом и данными вне runtime. Теперь Java может эффективно работать с нативными библиотеками и внешней памятью, заменив при этом JNI, улучшив производительность и стабильность, а также добавив возможность работать с разными видами памяти на разных платформах.
Читать: https://habr.com/ru/post/580630/?utm_campaign=580630
8 538
Difference between Method and Constructor in Java and OOP? Example
What is the difference between method and constructor in Java is a very common question in beginner-level Java interviews with 2 to 3-year experience. Since the constructor is kind of special and it...
Read: http://www.java67.com/2012/11/difference-between-method-vs-constructor-java.html
