Is there any way to connect DAO files to Servlet.Once Connected we need to get all the database connections in the JSP files used in same project.
I tried this but i cannot connect to DAo.
Is there any way to connect DAO files to Servlet.Once Connected we need to get all the database connections in the JSP files used in same project.
I tried this but i cannot connect to DAo.
This is wrong architecture. From Servlet (view layer) you should call Service Layer. Service Layer should call DAO Layer and all layers should have access to domain objects (ok view layer should use DTOs..this is controversial).
Any way to your question now. Since you don't specify your framework I give some candidate answers:
Please refer the following links Which will help you to proceed further.
Data access object (DAO) in Java
http://www.oracle.com/technetwork/java/dataaccessobject-138824.html