Простая отладка микросервисов 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
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.
Cравнениt возможностей вычисления структурированных данных и основных функций. https://dzone.com/articles/looking-for-the-best-java-data-computation-layer-t
dzone.com
Looking for the Best Java Data Computation Layer Tool - DZone Java
This essay is a deep dive into 4 types of data computation layer tools (class libraries) to compare structured data computing capabilities and basic ...
Начало работы с бессерверными функциями Java с использованием Quarkus и AWS Lambda https://dzone.com/articles/getting-started-with-java-serverless-functions-usi
dzone.com
Getting started with Java Serverless Functions using Quarkus and AWS Lambda - DZone Java
11 лучших Java IDE, которые вы можете использовать в 2021 году https://code.coursesity.com/best-java-ides
Code & Coffee ☕
11 Best Java IDEs You Can Use In 2021
If you're an aspiring software developer, learning Java is a must. Here is a list of some of the most popular Java IDEs. Read more here.
Важные вещи, которые нужно изучить разработчикам Java в 2021 году.
https://hackernoon.com/important-things-for-java-developers-to-learn-in-2021-pgy34ru
https://hackernoon.com/important-things-for-java-developers-to-learn-in-2021-pgy34ru
Hackernoon
Important Things For Java Developers To Learn In 2021 | HackerNoon
If you are looking to learn Java, you may be wondering where to start. Which technologies should you focus on?