I'm implementing MVC using JSP and JDBC. I have imported a database class file to my JSP file and I would like to show the data of a DB table. I don't know how I should return the ResultSet
from the Java class to the JSP page and embed it in HTML.
How can I achieve this?
MVC, in a web application context, doesn't consist in using a class from a JSP. It consists in using the following model :
Since the JSP usually uses JSP tags (the JSTL, for example) and the JSP expression language, and since JSP tags and the EL are designed to get information from JavaBeans, you'd better have your data available in the form of JavaBeans or collections of JavaBeans.
The role of the controller (the action class) is thus to fetch the data, to create JavaBean instances containing the data, in a suitable format for the JSP, to put them in request attributes, and then to dispatch to the JSP. The JSP will then iterate through the JavaBean instances and display what they contain.
You should not implement the MVC framework yourself. Use existing ones (Stripes, Struts, etc.)
I don't know how should I return the ResultSet from the class file to the JSP page
Well, you don't.
The point of MVC is to separate your model ( the M DB info in this case ) from your view ( V a jsp, in this case ) in such a way you can change the view without braking to application.
To do this you might use an intermediate object to represent your data ( usually called DTO - after Data Transfer Object -, don't know how they call it these days ), and other object to fetch it ( usually a DAO ).
So basically you have your JSP file, get the request parameters, and then invoke a method from the DAO. The dao, internally has the means to connect to the db and fetch the data and builds a collections of DTO's which are returned to the JSP for rendering.
Something like this extremely simplified ( and insecure ) code:
Employee.java
EmployeeDAO.java
employee.jsp
I hope this give you a better idea.
You can use the
<c:forEach >
tagyou can find a detailed example in the following link example use
In a well designed MVC approach, the JSP file should not contain any line of Java code and the servlet class should not contain any line of JDBC code.
Assuming that you want to show a list of products in a webshop, the following code needs to be created.
A
Product
class representing a real world entity of a product, it should be just a Javabean.A DAO class which does all the nasty JDBC work and returns a nice
List<Product>
.A servlet class which obtains the list and puts it in the request scope.
Finally a JSP file in
/WEB-INF/products.jsp
which uses JSTL<c:forEach>
to iterate overList<Product>
which is made available in EL by${products}
, and uses JSTL<c:out>
to escape string properties in order to avoid XSS holes when it concerns user-controlled input.To get it to work, just call the servlet by its URL. Provided that the servlet is annotated
@WebServlet("/products")
or mapped inweb.xml
with<url-pattern>/products</url-pattern>
, then you can call it byhttp://example.com/contextname/products
See also:
I think it will be better for you to contain the data of the table into a collection such as list and return the list from the Java class and reuse this collection in the JSP.