waht are architecture of web application?
Answers were Sorted based on User's Feedback
Answer / arun
The archtechture followed in developing any web application
is MVC ( Model View Controller ).The Model part is the Java
bean(Value objects) used in the application,the View may be
HTML,Jsp etc and the controller part is the servlet where
the actual business logic is implemented.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / srinu
THE web application follwed by MVC architectute
MODEL----->Persistance logic+Middle ware services(JDBC with
coonection pooling)
View------->presentation layer(html,jsp)
Controller------->controll the all the component +
integration logic(connect with DAO)
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the Spring2.5 MVC Navigation flow?
What are the interfaces in java collections? : java collections
please mail me the interview question based on java/j2ee
Which of the following declaration is wrong? int i=45; float j = 45.0; double k=45.0;
who should use JNDI?
What are the uses of the set interfaces in the java collections? : java collections
Difference between Spring framework and Struts framework?
12 Answers IBM, L&T, VAM,
What is a constructor?
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()); } }
what is difference between web server and application server?
what is acl(access control list)?
What is IOC in spring?