Open in app

Sign in

Write

Sign in

Serdar A.
Serdar A.

101 Followers

Home

Lists

About

Jul 5

Managing the wizard UI component by the strategy design pattern in spring boot backend service

Hello everyone For Turkish : https://lastjavabuilder.medium.com/spring-boot-mikroservisinde-strateji-tasar%C4%B1m-deseni-ile-wizard-ui-bile%C5%9Feni-y%C3%B6netmek-aaf1fd0b9955 Whether you have a monolithic application or a microservice architecture application , if you have a wizard component in your frontend application and you want to manage it on the backend with a small number of endpoints, I would like to show an example…

Spring Boot

11 min read

Managing the wizard UI component by the strategy design pattern in spring boot backend service
Managing the wizard UI component by the strategy design pattern in spring boot backend service
Spring Boot

11 min read


Jul 4

Spring Boot mikroservisinde strateji tasarım deseni ile wizard UI bileşenini yönetmek

Merhabalar; For English : https://lastjavabuilder.medium.com/managing-the-wizard-ui-component-by-the-strategy-design-pattern-in-spring-boot-backend-service-7ad47ab750ae İster monolitik bir uygulamanız olsun ister de microservis mimarisinde bir uygulamanız olsun, frontend uygulamanızda bir wizard UI component varsa ve bunu az sayıda endpoint ile backend tarafında yönetmek istiyorsanız, bunun strateji design pattern ile nasıl yapılabileceği ile ilgili bu yazım da backend tarafında örnek bir…

Spring Boot

10 min read

Spring Boot mikroservisinde strateji tasarım deseni ile wizard UI bileşenini yönetmek
Spring Boot mikroservisinde strateji tasarım deseni ile wizard UI bileşenini yönetmek
Spring Boot

10 min read


Jul 1

Why this List throw UnsupportedOperationException? : A Java Interview Question

Hello everyone Let’s first look at our example: public static void main(String[] args) { String[] players = {"Messi","Ronaldinho","Iniesta","Xavi","Busquets","Puyol"}; List<String> list = Arrays.stream(players).toList(); list.remove("Iniesta"); System.out.println("list elements"); list.forEach(s -> System.out.println(s)); } When we run this code in the console, we see the error Exception in thread “main” java.lang.UnsupportedOperationException.

Java

2 min read

Why this List throw UnsupportedOperationException? : A Java Interview Question
Why this List throw UnsupportedOperationException? : A Java Interview Question
Java

2 min read


Jun 18

Confusing Java, Overloading : A Java Interview Question

Hello everyone; Let’s start by asking the output of the following code block first. public class OverLoadExample { public void test(long a, int b) { System.out.println("test one"); } public void test(int a, long b) { System.out.println("test two"); } public static void main(String[] args) { OverLoadExample overLoadExample = new OverLoadExample(); overLoadExample.test(1,2); } }

Java

1 min read

Confusing Java, Overloading : A Java Interview Question
Confusing Java, Overloading : A Java Interview Question
Java

1 min read


Jun 18

switch-case : A Java Interview Question

Hi everyone; I wanted to write an article about a situation that caught my attention while I was working on interviews recently. Let’s start by asking the output of the following code block first. public class SwitchCaseExample { public static void main(String[] args) {…

Java

2 min read

switch-case : A Java Interview Question
switch-case : A Java Interview Question
Java

2 min read


May 21

About reducing conway effect and inverse conway maneuver in software project teams

Hi everyone, For Turkish : https://lastjavabuilder.medium.com/yaz%C4%B1l%C4%B1m-proje-ekiplerinde-conway-etkisinin-azalt%C4%B1lmas%C4%B1-ve-ters-conway-manevras%C4%B1-hakk%C4%B1nda-f9e8f3163ae3 I wanted to write something about beyond the topics such as the choice of coding language, writing code, database selection, database model design, tests, CI/CD processes, architectures, uninterrupted service, hardware, etc. …

Conways Law

8 min read

About reducing conway effect and inverse conway maneuver in software project teams
About reducing conway effect and inverse conway maneuver in software project teams
Conways Law

8 min read


May 21

Yazılım proje ekiplerinde conway etkisinin azaltılması ve ters conway manevrası hakkında

Merhabalar, For English : https://lastjavabuilder.medium.com/about-reducing-conway-effect-and-inverse-conway-maneuver-in-software-project-teams-39f8d6dd37f9 Bu yazımda teknoloji veya teknolojik ürün üretme süresindeki kodlama dili seçimi, kod yazımı, veritabanı seçimi, veritabanı model tasarlanması, testler, CI/CD süreçleri, mimariler, kesintisiz hizmet, donanım vb konuların ötesinde, çoğu zaman üstünde düşünülmeyen veya başka sebeplerle ihmal edilen bir konu hakkında birşeyler yazmak istedim.

Conways Law

7 min read

Yazılım proje ekiplerinde conway etkisinin azaltılması ve ters conway manevrası hakkında
Yazılım proje ekiplerinde conway etkisinin azaltılması ve ters conway manevrası hakkında
Conways Law

7 min read


Apr 19

Step by Step Migration to Spring 3.x (Jakarta,Security,Hibernate 6, OpenApi,Cache)

Hello everyone. For Turkish : https://lastjavabuilder.medium.com/projeyi-ad%C4%B1m-ad%C4%B1m-spring-boot-3-xe-g%C3%BCncelleme-jakarta-security-hibernate-6-openapi-cache-75d4d4cc8d8e In this article, I will try to explain my experience in migration the Spring Boot 2.x project that I have been working on recently to Spring Boot 3.x. With Spring 3.x, there have been radical changes to the existing Spring infrastructure.Spring Framework 6…

Spring

6 min read

Spring

6 min read


Apr 18

Projeyi adım adım Spring Boot 3.x'e güncelleme (Jakarta,Security,Hibernate 6, OpenApi,Cache)

Merhabalar; For English : https://lastjavabuilder.medium.com/step-by-step-migration-to-spring-3-x-jakarta-security-hibernate-6-openapi-cache-925401fa7b2c Yakın zamanda üzerinde çalıştığım Spring Boot 2.x projeyi Spring Boot 3.x’e taşımayla ilgili tecrübelerimi bu yazıda anlatmaya çalışacağım. Spring 3.x ile birlikte mevcut Spring altyapısında radikal değişiklikler oldu. Spring 3.x ile birlikte Spring Framework 6 desteği geldi. Bununla birlikte Spring dökümantasyonunu incelerseniz (https://spring.io/blog/2022/05/24/preparing-for-spring-boot-3-0) Java…

Spring

5 min read

Spring

5 min read


Jul 17, 2022

JAVA BLOCKS AND SOME EXAMPLES OF INTERVIEW QUESTIONS

Click here for the Turkish of this article In Java, apart from methods and constructors, Java has blocks called Initialization Blocks. This blocks are : Static Initialization Blocks Instance Initialization Blocks Static Initialization Blocks Declared by using the keyword “static”. Runs first when the class is first loaded. Instance…

Java

5 min read

JAVA BLOCKS AND SOME EXAMPLES OF INTERVIEW QUESTIONS
JAVA BLOCKS AND SOME EXAMPLES OF INTERVIEW QUESTIONS
Java

5 min read

Serdar A.

Serdar A.

101 Followers

Senior Software Developer at Havelsan Github: https://github.com/serdaralkancode #Java & #Spring & #BigData & #React & #ReactNative & #JS #Microservice

Following
  • The Educative Team

    The Educative Team

  • KD Knowledge Diet

    KD Knowledge Diet

  • Raja Muhammad Mustansar Javaid

    Raja Muhammad Mustansar Javaid

  • King of Interviews

    King of Interviews

  • fatfish

    fatfish

See all (342)

Help

Status

About

Careers

Blog

Privacy

Terms

Text to speech

Teams