what is difference between perfom() & excute() ?
Answers were Sorted based on User's Feedback
Answer / chirag
Now perform() method has been deprecated in struts 1.2
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / chilipi
in struts 1.1 using perform().
in struts 1.2 using execute().
| Is This Answer Correct ? | 5 Yes | 1 No |
What is wrapper class example?
how to make hashmap object as synchronized object?
What is the base class of all exception classes in java?
Which is illegal identifier in java?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
What is an inner class in java?
Give me example of derived data types.
what is difference between interface and abstract class..?
What makes a function well defined?
What is charat java?
Why do we use predicate in java?
Why hashset is used in java?