Entries from 2019-09-01 to 1 month

How to enable Junit with Spring boot Projects

In this article, we will learn how to enable JUnit 5 in a newly created SpringBoot project. We are going through the following steps: Initialize new Sprint Boot project Having a look at our pom.xml and mostly on sprint-boot-starter-test de…

JSP Life cycle Events explained

JSPs are actually servlets, as you have already seen. Container will convert all jsp files into servlets before executing them. JSPs just provide an easy way to create components containing non-java code. Once a JSP page is created and dep…

Java 13 Updates revealed Checkout here

Java 13 doesn’t have too many major updates which are usually called a JEP (Java Enhancement Proposal). Here is a list of JEPs which were delivered in the new version of Java: Switch Expressions (Preview) Text Blocks (Preview) Reimplement …

What Changes Switch in Function with Java 13 Update

package com.mkyong.java13; public class JEP354 { public static void main(String[] args) { System.out.println(getValueViaYield("a")); System.out.println(getValueViaYield("c")); System.out.println(getValueViaYield("e")); System.out.println(g…

Digital Marketing Strategies that changes the growth

1.Because Digital Marketing Levels the Online Playing Field Gone are the days when business owners still welcome the notion that Digital Marketing is only for the likes of multinationals and large corporations that have the sufficient reso…

Is Java Apt for Making Machine learning Applications

When we talk about computer languages in the domain of Machine Language and Artificial Intelligence, we hear about Python and R as the language to learn. Most of the people don’t know that Java could also be used for ML, AI or Data science…

What is Reverse Engineering Methodology

History of reverse engineering:- Reverse engineering most probably starts with Dos (disk operating system) based computer games. The aim is to have full life and armed for the player to finish the final stage of the game. In that way the t…

What are key difference between APIs and Microservices

What Is an API? First, let’s define what an API is. According to Wikipedia, an API (application programming interface) is: a set of subroutine definitions, communication protocols, and tools for building software. In general terms, it is a…