This attribute is used to import interface, classes or whole package. You can import more than one package separated by commas.
Syntax:
<
Example:
welcome.jsp
<%@ page import="java.util.Date" %> <html> <head> <title>import page directive example</title> </head> <body> Current date: <%= new Date() %> </body> </html> |
web.xml
<web-app> <welcome-file-list> <welcome-file>welcome.jsp</welcome-file> </welcome-file-list> </web-app> |
Output:
Download this example.
Next Topic: Session attribute of JSP page directive with example.
Previous Topic: JSP directives with example.