Исправление ошибки в Java https://candrews.integralblue.com/2021/04/fixing-a-bug-in-java/
Параллельные потоки Java 8 - Примеры пользовательских пулов потоков https://www.javacodegeeks.com/2021/05/java-8-parallel-streams-custom-thread-pools-examples.html
Java Code Geeks
Java 8 Parallel Streams – Custom Thread Pools Examples
Interested to learn about Thread Pools? Check our article explaining how to create custom thread pools in Java 8 for bulk data processing
Что такое коллекции Java? Начать работу с платформой https://betterprogramming.pub/what-are-java-collections-get-started-with-the-framework-4ea9233c35b5
Medium
What Are Java Collections? Get Started With the Framework
Implement the various data structures with Java
Действительно ли Java быстрее, чем Go? https://dzone.com/articles/java-vs-go-multiple-users-load-test-2
DZone
Is Java Really Faster Than Go?
Learning about performance differences between microservices written in Java and Go will help you plan the language you choose when building your own services.
Простая отладка микросервисов Java, работающих в Kubernetes, с помощью IntelliJ IDEA https://blog.jetbrains.com/idea/2021/05/easily-debug-java-microservices-running-on-kubernetes-with-intellij-idea/
The JetBrains Blog
Easily Debug Java Microservices Running on Kubernetes with IntelliJ IDEA | The IntelliJ IDEA Blog
This is a guest blog post by Daniel Bryant, from Telepresence Tutorial: Learn to locally debug Java microservices with IntelliJ IDEA and Telepresence connected to a remote Kubernetes cluster Many
Учебное пособие по Spring Framework: начало работы со Spring https://betterprogramming.pub/spring-framework-tutorial-getting-started-with-spring-b1ec55d79b3d
Medium
Spring Framework Tutorial: Getting Started With Spring
From salient to advance features — everything you need to know
Программа принимает значения двух чисел и выводит их сложение.
import java.util.Scanner;
class AddNumbers
{
public static void main(String args[])
{
int x, y, z;
System.out.print("Enter two integers to calculate their sum : ");
Scanner in = new Scanner(System.in);
x = in.nextInt();
y = in.nextInt();
z = x + y;
System.out.println("Sum of entered integers = " + z);
}
}
import java.util.Scanner;
class AddNumbers
{
public static void main(String args[])
{
int x, y, z;
System.out.print("Enter two integers to calculate their sum : ");
Scanner in = new Scanner(System.in);
x = in.nextInt();
y = in.nextInt();
z = x + y;
System.out.println("Sum of entered integers = " + z);
}
}
7 Отличных ресурсов для начинающих Java.
https://hackernoon.com/7-great-resources-for-java-beginners-g51l336l
https://hackernoon.com/7-great-resources-for-java-beginners-g51l336l
Hackernoon
7 Great Resources for Java Beginners | HackerNoon
To begin with, the Java programming language is easy enough to learn and has the greatest impact on the industry. So the question is: “which course to choose?"
Выход за рамки Java 8: создание пользовательских сред выполнения Java с помощью jlink https://www.claudiodesio.com/en/going-beyond-java-8-create-custom-java-runtimes-with-jlink/
Как проверить URL-адрес на наличие рискованных или уязвимых путей в Java https://dzone.com/articles/how-to-check-a-url-for-high-risk-or-vulnerable-pat
dzone.com
How to Check a URL for High-Risk or Vulnerable Paths in Java - DZone Java
Learn a quick, easy way to check URLs for vulnerabilities with Java and an API.
Использование интерфейса и абстрактного класса в Java https://www.baeldung.com/java-interface-vs-abstract-class
Baeldung on Kotlin
Using an Interface vs. Abstract Class in Java | Baeldung
Learn when to use an interface and when to use an abstract class in Java.
Почему записи Java лучше *, чем @Dataклассы данных Lombok и Kotlin https://nipafx.dev/java-record-semantics/
nipafx // You. Me. Java.
Why Java's Records Are Better* Than Lombok's @Data and Kotlin's Data Classes // nipafx
While all three remove boilerplate, the similarities don't go much further. Records have stronger semantics with important downstream benefits, which makes them better*. (* not always; depends on circumstances; excuse the clickbait)
Java на VS Code улучшает отладчик и средство запуска тестов https://visualstudiomagazine.com/articles/2021/05/14/vscode-java-apr21.aspx
Visual Studio Magazine
Java on VS Code Improves Debugger and Test Runner -- Visual Studio Magazine
The April 2021 update to Java on Visual Studio Code mainly improves debugging and testing.
12 технологических тенденций, которым должен научиться каждый Java-разработчик https://habr.com/en/post/558016/
Habr
12 Tech Trends Every Java Developer Must Learn To Win The Game In 2021
Tech Trends Every Java DeveloperThe previous year has been very distressing for businesses and employees. Though, software development didn’t get so much a...
5 способов реализовать криптографию на Java https://dzone.com/articles/5-ways-to-overcome-the-challenges-of-implementing
dzone.com
5 Ways To Implement Cryptography in Java - DZone Java
Cryptography can go wrong in a number of ways. We highlight some of the challenges Java developers face when building cryptography into their existing code.