Tutorials

Ramadan Timetables 2024

📝Note: These Ramadan Timetables 2024 are based on your device’s location. Allow accessing your device location if asked. Ramadan Timetable Ramadan Timetable Day Fajr/Sehri Sunrise Dhuhr Asr Maghrib/Iftar Isha *PrayTimes.org #Note: Please refer to the timetable at your local mosque as well. Ramadan is a holy month of fasting and prayer for Muslims worldwide. It …

Ramadan Timetables 2024 Read More »

Check SSC Result in Bangladesh

Check the Result from Your Mobile Devices Follow the following pattern and Send it To 16222 Number: SSC <Space>First Three Letters of your Board <Space>Roll Number <Space> Year Example: For Mymensingh board SSC MYM 123456 2020 ⇒ Send to 16222 Board Name First Three Letters Dhaka Board DHA Mymensingh Board MYM Cumilla Board CUM Rajshahi …

Check SSC Result in Bangladesh Read More »

How to parse XML file using XPath parser

XPath is used to parse a XML document whenever we know  what we have to parse like: tag name, attribute name. That means we can directly indicate and parse whatever(tag or attribute value) we want to parse.   Lets see an example:   package com.sourav.xpathex; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; …

How to parse XML file using XPath parser Read More »

Spring MVC HelloWorld Example With Maven, Bootstrap and Logging(Log4j)

Spring MVC HelloWorld Example With Maven, Bootstrap and Logging(Log4j): In this tutorial we are going to see a project based on Spring MVC,  Maven, Bootstrap and Log4j. This example is actually for showing use of Logging(using Log4j) in Spring MVC based application. If want to know why logging is important  then visit  importance of logging. For knowing what is Log4j …

Spring MVC HelloWorld Example With Maven, Bootstrap and Logging(Log4j) Read More »

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 »

Spring MVC HelloWorld Example With Maven and Bootstrap

Spring MVC HelloWorld Example With Maven and Bootstrap: See the complete updated code: Project at GitHub Used Technologies:1. Spring Framework2. Jsp, HTML, CSS, Bootstrap3. Built Tool: Maven4. Server: tomcatFinal Project Structure: Jsp pages:Index.jsp <% response.sendRedirect(“dashboard.do”);%> customer.jsp <!DOCTYPE html> <%@ taglib prefix=”c” uri=”http://java.sun.com/jsp/jstl/core”%> <%@ taglib prefix=”form” uri=”http://www.springframework.org/tags/form”%> <%@ taglib prefix=”spring” uri=”http://www.springframework.org/tags”%> <html> <head> <meta http-equiv=”Content-Type” content=”text/html; …

Spring MVC HelloWorld Example With Maven and Bootstrap 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 »