I have two arraylists in my class and I want to send it to my JSP and then iterate the elements in arraylist in a select tag.
Here is my class:
packa
You can use JSTL's foreach.
${item}
You need also to import JSTL core:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>