rashid jorvee blog
acquire knowledge and impart it to the people
Menu
Environment
About
Tutorials
Java
Adobe AEM
OSGi
SQL
React
AI/ML
JavaScript
EDS
History
First in India
World
Ancient
Medieval
Modern
Tourism
Asia
Europe
Tourism in India
Polity
Constitution of India
Constitution
Government
Poetry
Allama Iqbal
Ameer Khusro
Amjad Islam Amjad
Faiz Ahmed Faiz
Gulzar
Kabeer
Meer Taqi Meer
Mirza Ghalib
Rahat Indori
Rabindranath Tagore
Sahir Ludhianvi
Shakeel Badayuni
Philosophy
Western philosophy
Indian philosophy
Rationalism
Materialism
Quotes
Mahatma Gandhi
Hazrat Ali
Science and Technology
Information
Constitution of India
GoI websites
India
Others
Gallery
Showing posts with label
Java
.
Show all posts
Showing posts with label
Java
.
Show all posts
package javax.annotation.security does not exist
›
We need to include this maven dependecy or JAR in java project to fix the javax.annotation.security does not exist issue. https://mvnrep...
JUnit for Java getter and setter methods
›
POJO class public class ColleagueDetails { private String colleagueID ; private String colleagueEmail ; public ColleagueDetail...
Insufficient Heap Memory
›
Issue " Insufficient Heap Memory " Using 64bit VM settings, min.heap=1024MB, min permgen=256MB, default fork arguments=[-Xmx1024m,...
Can we have multiple doGet() or doPost() in a servlet?
›
No, it doesn't make sense to creating multiple doGet() or doPost() methods in a Servlet. The compiler will always execute the first one...
working with enum in Java
›
enum Level { LOW ( "A" ), MEDIUM ( "B" ), HIGH ( "C" ); public final String value ; ...
Reading excel data in Java Sprint Boot
›
In this article, we will walk through the steps and program which we need to develop to read the excel data in Java program or spring boot a...
Diamond operator is not supported in source
›
While running a Java project with IntelliJ, we might face an error stating "diamond operator is not supported in -source 1.5", whi...
1 comment:
Cast an object to Integer in Java
›
We could cast an object that have integer value into an integer using below Java code. int value = Integer.parseInt(object.toString());
How to get the last path segment of an URL using Java
›
With any programming language, we come at some point where we need the last segment of the URL to manage and moderate the request and respon...
1 comment:
Why there is no main method in Servlet?
›
A Java Servlet is a plugin to a web server and always run in web container. When we run any program that has main method, the program runs t...
›
Home
View web version