Amol Dongre

Greenhorn
+ Follow
since Sep 17, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
1
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Amol Dongre

Hi,
when we deploy war. file on tomcat it creates directory for that file automatically. so when i delete same war file from tomcat it should delete directory automaticallt. its normal behaviour of tomcat and it happens but sometimes when i delete war file the directory remains.
11 years ago
after deleting the WAR file while Tomcat is running, then Tomcat not deleting the complete web app directory on linux server.
for ex. if i delete amol.war then amol dirctory still remains
11 years ago
when i called method on session for ex. getAttribute() it throws IllegalStateException so if session is null it should throw nullpointerException
11 years ago
when invalidate is called on HttpSession object what happens to session will it become null?
11 years ago

Campbell Ritchie wrote:



not clear can you explain it briefly
12 years ago
why abstract class allow private constructor when abstract class can not be instantiated and private constructor can not be called through super() in subclasses
12 years ago
to which statements can we assign label i mean can we assign label to method,intialization block
yes i found out
thanks for reply
thanks every one
i got the answer
what this declaration mean
int name = new int []{12,10,15,30}[4];
what get stored in name?
int method()
{
return name;
}
will it works?
Why The access level can't be more restrictive than the overridden method's.