Материалы по теме 'java' | DevsDay.ru

IT-блоги Материалы по теме 'java'

IT-блоги Материалы по теме 'java'


Разработка habr.com 18 мая 2024 г. 12:31

Привет! Меня зовут Данекер, я Fullstack-разработчик (Java, Angular). В этой статье я хочу поделиться с вами, как реализовать комбинированную авторизацию в Spring Security, используя примеры авторизации через социальные сети, такие как GitHub, а также...... читать далее

Java spring github oauth2 security

Разработка dev.to 18 мая 2024 г. 11:48

In this post, we will see how to configure AWS Secret Manager with Spring Boot Application. Secret manager can be very useful for managing service secrets, API keys, Database credentials and other secrets for deploying applications. Let's set up Sec...... читать далее

springboot webdev aws deepcodr

Разработка dev.to 18 мая 2024 г. 11:31

Introduction In the rapidly changing landscape of software development, the ability to adapt and evolve is crucial for success. One key aspect of this adaptability is effective code refactoring. This article delves into the significance of code ref...... читать далее

Разработка dev.to 18 мая 2024 г. 10:46

Python is a popular and powerful programming language known for its dynamic typing, where variable types are inferred at runtime. While this allows for flexibility, it can make code more difficult to understand in a collaborative setting. To address...... читать далее

python programming software coding

Разработка dev.to 18 мая 2024 г. 10:08

To copy the contents of one array into another, you have to copy the array’s individual elements into the other array. Often, in a program, you need to duplicate an array or a part of an array. In such cases you could attempt to use the assignment st...... читать далее

java programming learning beginners

Разработка dev.to 18 мая 2024 г. 9:56

As a backend developer, there are several software engineering principles that are crucial to understand and implement. These principles help ensure that your code is maintainable, scalable, and robust. Here are some key principles: 1. SOLI...... читать далее

java backenddevelopment softwaredevelopment softwareengineering

Разработка dev.to 18 мая 2024 г. 5:17

As a software developer, it's not always possible to dive deep into the language you're working with, and sometimes it's difficult to find situations where you need to use advanced or non-trivial features. It's easy to use a magic framework, the hard...... читать далее

java javaunderthehood tutorial

Разработка dev.to 18 мая 2024 г. 4:25

Introduction Swagger, now part of the OpenAPI initiative, is a powerful tool for documenting and testing RESTful APIs. Using Springfox, you can easily integrate Swagger 3 (OpenAPI 3) with your Spring Boot application. In this article, I’ll guide yo...... читать далее

Разработка dev.to 17 мая 2024 г. 21:15

When we are testing our code, we can't only test things that will give us a successful return. Tests should be a way to help you find bugs, so in this step of the specification-based testing, we are going to understand the partitions of our code. An...... читать далее

java programming testing webdev

Разработка dev.to 17 мая 2024 г. 19:42

Java'da method references (metod referansları), Java 8 ile gelen ve lambda ifadelerinin daha okunabilir ve kısa hale getirilmesini sağlayan bir özelliktir. Metod referansları, belirli bir metodun doğrudan adını kullanarak, o metodu bir lambda ifadesi...... читать далее

Разработка dev.to 17 мая 2024 г. 18:58

Java 8 Stream API, işlerimizi kolaylaştıran bir araçtır ve verimli ve temiz uygulamalar oluşturmak için birçok yeni model getirir. Stream API, liste ve dizileri işlemek için işlevsel operasyonlar sağlar. İşte bazı önemli Stream API operasyonları:...... читать далее

Разработка dev.to 17 мая 2024 г. 18:48

Introduction In the realm of web development, REST APIs (Representational State Transfer Application Programming Interfaces) have become the backbone of modern applications. They provide a standardized way for different systems to communicate over...... читать далее

java restapi api backenddevelopment

Разработка dev.to 17 мая 2024 г. 16:29

Java'da POJO (Plain Old Java Object), yani "Sade Eski Java Nesnesi", herhangi bir Java sınıfı hiyerarşisi, framework'ü veya kütüphanesi tarafından zorunlu kılınan özel bir kurallar bütünü olmadan oluşturulan basit ve temiz bir nesne modelini ifade ed...... читать далее

Разработка dev.to 17 мая 2024 г. 16:08

Java'da Iterator, koleksiyonlar üzerinde döngü yapmak ve elemanları sırayla erişmek için kullanılan bir araçtır¹. Iterator arayüzü, java.util paketinde tanımlanmıştır ve koleksiyon elemanlarını tek tek dolaşmanızı sağlar¹. Iterator arayüzünün temel...... читать далее

Разработка dev.to 17 мая 2024 г. 16:05

Java'da new ArrayList<>() ifadesinde <> içi dolmamışsa, bu diamond operatörü kullanımını gösterir. Diamond operatörü, Java 7 ve sonrasında tanıtılmıştır ve jenerik tür parametresinin sağ tarafta tekrar yazılmasına gerek kalmadan, sol tara...... читать далее

Разработка dev.to 17 мая 2024 г. 15:51

Java'da LinkedList ve ArrayList, List arayüzünü uygulayan iki farklı koleksiyon sınıfıdır ve her ikisi de bir dizi öğeyi saklamak için kullanılır. Ancak, altta yatan veri yapıları ve performans özellikleri açısından farklılıklar gösterirler...... читать далее

Разработка dev.to 17 мая 2024 г. 15:50

Hello dev.to community, Today, I want to introduce you to a fantastic tool that converts your code into images - Code2Image. If you're looking for a simple solution to share your code as beautiful images, then Code2Image is exactly what you need...... читать далее

tooling news web react

Разработка dev.to 17 мая 2024 г. 15:28

Java'da List, Set ve Map, Java Collections Framework'ün temel arayüzleridir ve farklı türde koleksiyonları temsil ederler. İşte her biri hakkında kısa bir açıklama: List List arayüzü, sıralı bir koleksiyonu (dizi benzeri bir yapı) temsi...... читать далее

Разработка dev.to 17 мая 2024 г. 14:39

Java'da encoder ve decoder, verileri bir formattan başka bir formata dönüştürmek için kullanılan araçlardır. Bu terimler genellikle veri kodlaması ve kod çözme işlemleriyle ilişkilendirilir¹. Encoder (Kodlayıcı): Encoder, veriyi belirli...... читать далее

Разработка dev.to 17 мая 2024 г. 14:18

Primitive Type (İlkel Tip) Nedir? Java'da primitive type ya da ilkel tip, en temel veri türlerini ifade eder ve bellekte doğrudan değerleri saklar¹. İlkel tipler, nesne olmadan kullanılabilir ve Java'nın hızlı ve verimli çalışmasını sağlar. Java'da...... читать далее