How do you import the packages in the JSP?
Answers were Sorted based on User's Feedback
Answer / manas banerjee
<% @ page import = 'package name.class name' %>
suppose we have a package name x and we have a bean (under
the package x)class/class y then you have to write
<% @ page import = 'x.y' %>
| Is This Answer Correct ? | 35 Yes | 15 No |
Answer / ullas v
<%@ page language="java"
import="java.sql.*,
com.sixdee.dao.configurationDAO.*,
com.package.common.reports.Report,
java.util.ArrayList"
errorPage="../common/errorPage.jsp"
%>
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / winston watson
<%@page import="mypackage.*, otherpackage.MyClass"%>
With packages under WEB-INF/classes for classes and the
source in packages under src
| Is This Answer Correct ? | 13 Yes | 5 No |
Answer / abinaya
<% @ page import="java.io.*,java.sql.*,java.util.*"%>
| Is This Answer Correct ? | 7 Yes | 1 No |
What are request and response objects?
What's the difference between javabeans and taglib directives?
Define Expression
What is the difference between java servlet and jsp?
Hi, We developed a webpage using jsp for our team, now we need to know who are employees opening this page,i.e, we need to get the windows user name when ever he/she open the page and stores into a variable. Plz help on this
What are the events in jsp page?
What is the include directive?
Is jsp better than servlet?
What is the difference between Java Servlet & JSP?
Is jsp and javascript same?
Can we call servlet from jsp?
How can I declare methods within my jsp page?