Back
I am a complete JSP beginner. I am trying to use a java.util.List in a JSP page. What do I need to do to use classes other than ones in java.lang?
java.util.List
java.lang
Use the following import statement to import java.util.List:
<%@ page import="java.util.List" %>
BTW, to import more than one class, use the code below format:
<%@ page import="package1.myClass1,package2.myClass2,....,packageN.myClassN" %>
31k questions
32.8k answers
501 comments
693 users