Five tags of JSP

<% %> – Scriptlet
<%= %> – Expression
<%@ %> – Page Directive
<%– –%> – Comment
<%! %> – Declaration

To define the conditions for the JSP engine to convert it into a servlet you define it in the JSP Directive but to add the classes you can make use of import attribute of the page directive.
<%@ page import =”business.*,data.*” %>

Leave a comment