Mamun Kayum

How to download and install Apache tomcat on Windows?

Step 1: Installation of JDK: download and install from this link JDK Download Step 2: Setting the class path variable for JDK: Two methods are there to set the classpath. 1. Set the class path using the following command: set PATH=”C:\Program Files\Java\jdk1.5.0_08\bin”;%PATH% 2. The other way of setting the class path variable is: First right

How to download and install Apache tomcat on Windows? Read More »

Why and Where to use Log4j?

Why and Where to use Log4j? Suppose we are writing code to develop a software. For tracking and debugging our code, we generally write “system.out.println(“Your message”); “ . So, we will write system.out.println(“Your message”); statement as much as we need. Let’s say we have written 100 lines of this statement.   Now think, release of

Why and Where to use Log4j? Read More »

What is Log4j?

Log4j: Log4j is a framework written in java which is highly configurable. Here one question may come that what do we mean by “Framework” ? Framework is nothing but a partially or semi build application. One can use it for building other software. Log4j is used in java application for writing log in the code.

What is Log4j? Read More »

Git Branch Concept and work on Git branch

Git Branch Concept and work on Git branch: In general branch means separate workstation. Like this concept of separate workstation, we also can create separate branches in  Git according to the steps of our flows   like development(dev), Testing(test) or Production(prod)  or based on what functionality we will add to our project. We also create branches  in Git for not

Git Branch Concept and work on Git branch Read More »

Scroll to Top