From the course: Java EE: Servlets and JavaServer Pages (JSP)

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Core module: Displaying data

Core module: Displaying data

From the course: Java EE: Servlets and JavaServer Pages (JSP)

Start my 1-month free trial

Core module: Displaying data

- [Interviewer] Okay, so let's pick up from where we left off. We had done the job inside the servlet and the DAO. Now, this is the home.jsp file on which we are going to display the order data. But, in order to do that, there are quite a few steps we have to do before. One is we have to add the JSTL JAR to the build path. Now, as I said, the java server pages tag library jar is a separate jar. It's not a part, directly, of the servlets or JSP API. So, we have to do download this externally and then put it in the build path of the project. So, I have downloaded it already, which is on my desktop. So, I'm just going to take that, copy it, go to my projects lib folder. Let's go there. And, paste it there. Once done, I will also require to go to properties, go to the libraries tab of Build Path, and add that jar in the Build Path. So, I'm going to refer that from the lib folder. Let's just select it, say OK, and then, we apply the change and say OK again. So, now the build path is…

Contents