Why would you desing a J2EE application so user data is
entered by way of a JSP page and managed by an underlying
Java Beans class?
Answer Posted / tarun tyagi
See if you are still writing applications that use
data-aware GUI components to interface directly with the
database, you might want to reconsider. Applications built
in this manner are not object oriented. Such two-layer
(GUI/Database) applications violate one of the primary
principles of object-oriented design: encapsulation.
Encapsulation is what allows a client to interact with an
object without knowledge of its implementation details, a
primary premise for loose coupling. In applications that use
data-aware widgets, the opposite is the case. The client and
the database are very tightly coupled. GUI code, business
logic, and SQL statements are all interwoven throughout the
application source code. As a result, the application can
become a maintenance nightmare. Any changes in the database
schema will surely cascade into unexpected failures.
Thats why we design a J2EE application so user data is
entered by way of a JSP page and managed by an underlying
Java Beans class
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What is a war file?
What function extracts specified characters from a string?
describe method overloading
Name the components that are termed to be Heavy-weight component but available in Light-weight components?
What are the basic interfaces of java collections framework?
Which java version is latest?
What is synchronization and why is it important in java programming?
Explain the use of sublass in a java program?
What is the destroy method?
What is a conditional statement explain with example?
What is the maximum size of byte array in java?
State the main difference between c++ and java?
What is java and its types?
How does hashset work in java?
What are constants and how to create constants in java?