KRKishore Rameshinkishoreramesh.hashnode.dev·Jan 17, 2023 · 5 min readJava OOP conceptsOops concept in programming Object-Oriented Programming is a methodology to design a program using classes and objects. It simplifies software development and maintenance by incorporating certain principles. Abstraction Data Abstraction is the pro...00
KRKishore Rameshinkishoreramesh.hashnode.dev·Jan 11, 2023 · 4 min readSpring Security and JWTSpring Boot is a framework for building web applications using the Spring Framework. It provides a simple and easy-to-use approach for building standalone, production-grade Spring-based applications. One of the key features of Spring Boot is its buil...00
KRKishore Rameshinkishoreramesh.hashnode.dev·Jan 8, 2023 · 15 min readAngular CRUD App with Spring BootTools and technologies used Server-side technologies(Back end) Spring Boot JDK - 1.8 or later Spring Framework Spring Data JPA (Hibernate) Front end technologies Angular (Latest version as of now) Bootstrap 4 Node and NPM JQuery Tools Ma...00
KRKishore Rameshinkishoreramesh.hashnode.dev·Jan 4, 2023 · 3 min readDeep dive into Abstract Class vs InterfaceAbstract class what is an abstract class? A class that is not complete is abstract. "Not complete" means methods or functions inside this class that don't have a body or definition. Limitation of abstract class we can't create objects of an abstract ...00
KRKishore Rameshinkishoreramesh.hashnode.dev·Jan 2, 2023 · 2 min readRest Basics and Key ConceptsWhat is REST? The REST stands for REpresentational State Transfer ➢ State means data ➢ REpresentational means formats (such as XML, JSON, YAML, HTML, etc) ➢ Transfer means carrying data between consumer and provider using the HTTP protocol Key points...00