The Spring Core

Cahit Barkin Ozer
4 min readMar 20, 2022

This article will help you get started learning Spring Framework by focusing on the Core Spring Framework features.

For Access: https://cbarkinozer.medium.com/the-spring-core-f9e8371bf01?source=friends_link&sk=0c8220e5b3cc1303b4ffc77b5160a8dd

The Spring Framework (Spring) is a modular, open-source application framework that provides infrastructure support for developing Java applications. Spring, one of the most popular Java Enterprise Edition (Java EE) frameworks, assists developers in creating high-performance applications using simple Java objects (POJOs). Rod Johnson created it in 2003 because the EJB had architectural problems. Spring is one of the most popular frameworks for java.

Plain old java object(POJO): An ordinary Java object, not bound by any special restriction. It should not implement or extend any class/interface.
POJO classes have an id value and getter/setters.

Bean: A special kind of POJO that has some restrictions. Beans must be serializable. Fields must be private. Fields should have getters/setters.
There must be a no-argument constructor. Fields are only accessed by constructors or getters/setters.

Extensible Markup Language(XML): simple text-based format for representing structured information. For example :

Annotation: In dictionary meaning, annotation is a note added by way of comment or explanation. In programming, an annotation is a form of metadata that provides data about a…

--

--

Cahit Barkin Ozer
Cahit Barkin Ozer

Written by Cahit Barkin Ozer

Üretken YZ başta olmak üzere teknoloji alanındaki yenilikleri öğrenip sizlerle paylaşıyorum. Youtube Kanalım: https://www.youtube.com/@cbarkinozer

No responses yet