Entries from 2019-06-01 to 1 month

Various Types of Interface in Java explained

a. Set Interface in Java Set accumulation that doesn’t permit copies and furthermore doesn’t permit getting to components by index. Rather, it gives techniques that check if component or components exist. EnumSet — Enumset particular class…

Frontend And Backend Development major differnce

I started as a back end developer and work on that for about 3 years. Then I went into management and worked on that for about 3 years and now I am a front end developer and has been doing that for 4 years. Now that I’ve been doing FE for …

Microservices Performance with Docker and Cloud

Microservices are an architectural design for building distributed applications using containers. Microservices get their name because each function works as an independent service. This architecture allows for each service to scale or upd…

How Microservices Performed in Java

Microservices have become hugely popular in recent years. Mainly, because they come with a couple of benefits that are super useful in the era of containerization and cloud computing. You can develop and deploy each microservice on a diffe…

Spring boot and Spring MVC Explained

Spring Boot and Spring MVC are not comparable or mutually exclusive. If you want to do web application development using Spring, you would use Spring MVC anyway. Spring MVC is a sub-project of the Spring Framework, targeting design and dev…

Things to remember while learning Java

When you talk about Object Oriented Programming, the best and the most apt example that comes to the mind is Java. Developed by Sun Microsystems, Java leads the way in terms of cross platform programming language and developing application…

Lazyloading in angular 8 framework

We all know lazy loading is one of the most useful concepts of Angular Routing, and for those of us who have been working with Angular, we know how it brings down the size of large files. This is done by lazily loading the files that are r…

Why choose spring boot for the java web applications

Spring Boot just takes away all these pains and let you write the code which matters i.e. application code. All of the Spring Boot features which I mentioned e.g. auto-configuration, Starter POMs or Starter dependency and Spring Boot CLI a…

Java for a developer with small business

I have had a taste of every major programming language under the sun, including functional. But frankly, the ecosystems for most other modern languages/platforms are often very poor and just exhausting, and I'm looking to turn to something…

What are the features Angular 8 features

Angular 8 Updates And Summary of New Features is today’s topic. Angular 8 arrives with an impressive list of changes and improvements including the much-anticipated Ivy compiler as an opt-in feature. CLI workflow improvements The CLI is co…

Features of hibernate framework for your application

Hibernate supports Inheritance, Associations, Collections In hibernate if we save the derived class object, then its base class object will also be stored into the database, it means hibernate supporting inheritance Hibernate supports rela…