what is difference between business deligate and session
facade ?
Answers were Sorted based on User's Feedback
Answer / suresha
business delegate reduces coupling between presentation
tier clients and business services.it hides business
implementation details.
session facade encapsulate the complexity of interaction
between business objects.
| Is This Answer Correct ? | 18 Yes | 2 No |
httt method
which book is the best for preparing for SCWCD 1.5
Hi we have an urgent requirement for Java/J2ee technical lead position & also looking for "Java Guidewire claimcentre" experienced professional for Bangalore location if interested can reach srisanh@gmail.com
What is the use of log4j and how to make use of that in a application?
Is it Mandatory to map each pojo class variable with table column in Hibernate? Is there any alternative to skip some of those? Thanks in advance...
VSS Objectives
what is hibernate ceteria ?
How do I find jre path in windows?
What are the main classes of the list interfaces? : java collections
my interviewer asked me what technical specification you used how to answer that question
Hi frnds how to lock an user when he enter wrong credentials more than 3 time using java or j2ee tech take username and password in a bean no need to connect DB and validate give me some sample application code or links its urgent for me thanks in advance
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }