what is BUSINESS DELIGATE PATTERN,DAO,VO,DTO?
Answers were Sorted based on User's Feedback
Answer / yathirajulu.mettupally
DTO pattern in j2ee is... Data Transerfer Object, which
exchange the data with enterprise beans.
VO : Value Objects is nothing but java beans which consists
getter & setter methods.
DAO: Data Access Object is consisting of business-loigic &
connecting to database.
Deligate Pattern:Which is a adapter(mediator)class decouples
presentation cliet & business-logic.
Is This Answer Correct ? | 19 Yes | 3 No |
Answer / musarath
DAO is the Data acess Objects and VO is the value objects
which acts as a Model in MVC architecture...VO is nothing
but a bean consisting of getter and setter methods.DAO
consisits of business logic and code connecting the
database.
Not Sure of DTO and business delegate patterns.
Is This Answer Correct ? | 16 Yes | 5 No |
Answer / kathiravan j
Let's say I have three tables:
Employee (contains employee_id, employee_name, and dept_id)
Department (contains dept_id, dept_name, loc_id)
Location (contains loc_id, location_name)
How deep do your classes go to replicate the data?
Do you do this...
public class Employee {
private int id;
private String name;
private int deptId; // just the id
// .. implementation details
}
or do you do this
public class Employee {
private int id;
private String name;
private Department dept; // all of the data
// .. implementation details
}
and so on and so on. Class Department has the same type of
problem. Does it hold just the id for location or a
variable class Location?
Should DAOs just fill in the id (keys) so it is up to the
application using the DAOs to get the Employee class, then
the Department class, and the the Location class like:
Employee emp = EmployeDAO.getEmployee(1);
Department dept = DepartmentDAO.getDepartment(emp.getDeptId
());
Location loc = LocationDAO.getLocation(dept.getLocId());
System.out.println(emp.getEmpName() + " works in " +
loc.getLocationName());
or
Employee emp = EmployeDAO.getEmployee(1);
System.out.println(emp.getEmpName() + " works in " +
emp.getDept().getLoc().getLocationName());
Now this is just a simple example, but where do you draw
the line? It's possible to go on and on and on and cycle
back to employee... Taking another approach to the same
question...Say I have an employee_type table having values
of fulltime, parttime, etc. Whay do you store in the
employee class now? Just a String with the value of the
type or the key to the employee_type table? Is it
application dependent?
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / kris
every thing here
http://java.sun.com/blueprints/patterns/catalog.html
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / ravikiran(aptech mumbai)
Business Delegate:Is a design pattern used to hide the
remoteness of any component to the accessor
DAO:Is the data access object used to make the database
logic away fom the busines logic.By witing it in a seperate
method and calling in action
VO:Is the value object used in the development of enterprise
distributed applications to get and set the values
DTO:Is the data transfer object which will expose the
business methods to the jsps to call with out passing threw
the network barrier every time
Is This Answer Correct ? | 8 Yes | 6 No |
Answer / kathiravan j
DAO is Data Access Object where we can access object using
dataf
Is This Answer Correct ? | 5 Yes | 4 No |
What is Portlet???? when,where and why we use it ??
3 Answers Infotech, Rebaca, Wipro,
What is the difference between struts1 and struts2?
What types of Actions we have in Struts?
Can you explain the directory structure for a struts folder in brief ?
Which class of struts is responsible to converts data types from string and vice versa?
what r the disadvantages of MVC-2 Architecture?
What are action errors and error?
What is apache struts cve 2017 5638?
what is the purpose of action servlet and action?
What is interceptor? And life cycle methods of interceptor?
How do I access token?
What is the use of Struts.xml configuration file?