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 |
Which java collection class can be used to maintain the entries in the order in which they were last accessed?
What are the types of interface used in the java collections? : java collections
VSS Objectives
what is difference between business deligate and session facade ?
What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC
I have include a jsp page by using <jsp:include page="/.../xyz.jsp"/> The thing is that the xyz.jsp page has its submit button.When i click on that button the whole main page get refreshed.But i want to refresh only the xyz.jsp page.How could i achive it so that i can only refresh the xyz.jsp not the main page page?
Write a postfix expression to (a*(b+c/d)*d-e)
what is jndi?
what is the difference between checked and unchecked Exceptions?
How is hashset maintained in memory by java ?
What is an algorithm in java collection framework? : java collections
What do you understand by synchronization? Why is it important?