Close

Java Programming Language

Java is a general-purpose, class-based, object-oriented programming language designed to have as few implementation dependencies as possible. It is a compiled language, and its source code is converted to bytecode that can run on any Java Virtual Machine (JVM). This makes Java platform independent, meaning that Java code can run on any computer with a JVM installed.

The Most Common JVM Languages

java macos

A Java virtual machine (JVM) is a virtual machine that enables a computer to run Java programs. JVM is the core of the Java ecosystem. The JVM was initially designed to support only Java. However, as time passed, even more languages were adapted or intended to run on the Java platform. Any serious Java developer has to […]

Devamını Oku

JAVA ‘da int ve Integer Arasındaki Farklar Nedir?

JAVA ‘da int ve Integer Arasındaki Farklar Nedir?

JAVA ‘da int ve Integer Arasındaki Farklar Nedir? JAVA Integer sayıları saklamak için iki yöntem sağlar. İnt ya da Integer aynı büyüklükteki sayıları saklar.  İnt kullanımı Basit olarak 32 bit ilk  hafıza bloğunda integer değişlenleri saklar.  İnt değişkenleri doğrudan işlemlerde kullanabiliriz.  İnt ‘i basit casting işlemleri ile kullanabilirsiniz.  Integer Kullanımı […]

Devamını Oku

Java Client Roadmap Updates

Java

Oracle has published an update to the Java Client Roadmap which extends availability and support timelines for many Java Client related technologies. Executive Summary: Oracle has extended commercial support and updates for Java SE 8 from March 2025 to at least December 2030. Oracle has extended indefinitely the availability of updates for […]

Devamını Oku

Swagger Nedir?

Swagger Nedir?

Web Uygulama yazdığımız zaman bu uygulamaya erişim için bazı uçlar bırakıyoruz.  Bu uçlara uygulama arayüzü ya da kısaca API diyoruz.  Uygulamalar, takımlar arası çalışma bu arabirim üzerinden, arabirimin belirttiği standartlarda yapılır.  API’lerin kullandığı diller “standartlar” dan en bilinenleri SOAP ve REST’ dir.  SOAP’ da XML bir veri yapısı , REST’ […]

Devamını Oku

Enabling Dynamic Messaging in the Cloud: Spring Cloud Bus

Enabling Dynamic Messaging in the Cloud: Spring Cloud Bus

Spring Cloud Bus links nodes of a distributed system with a lightweight message broker. This can then broadcast state changes (e.g., configuration changes) or other management instructions. AMQP and Kafka broker implementations are included in the project. Alternatively, any Spring Cloud Stream binder on the classpath will work out of the box […]

Devamını Oku

Most popular languages on GitHub, 2019

github

Most popular languages on GitHub as of October 25, 2019, counting only repos with at least 10000 stars. # language repos count 1 JavaScript 397 2 Python 115 3 Java 103 4 Go 78 5 C++ 53 6 TypeScript 46 7 HTML 36 8 C 33 9 Shell 32 10 […]

Devamını Oku

Spring Cloud Stream: The Future of Distributed Messaging and Stream Processing

Java

Spring Cloud Stream is a framework for building highly scalable event-driven microservices connected with shared messaging systems. The framework provides a flexible programming model built on already established and familiar Spring idioms and best practices, including support for persistent pub/sub semantics, consumer groups, and stateful partitions. Binder Implementations Spring Cloud […]

Devamını Oku

Client Side Load Balancer: Ribbon

Client Side Load Balancer: Ribbon

Ribbon is a client-side load balancer that gives you much control over the behavior of HTTP and TCP clients. Feign already uses Ribbon, so, if you use @FeignClient, this section also applies. A central concept in Ribbon is that of the named client. Each load balancer is part of an ensemble […]

Devamını Oku

Config as a Service: Simplifying Application Setup with Spring Cloud Config

Java

Spring Cloud Config provides server-side and client-side support for externalized configuration in a distributed system. With the Config Server, you have a central place to manage external properties for applications across all environments. The concepts on both client and server map identically to the Spring Environment and PropertySource abstractions, so they fit very well […]

Devamını Oku