Я печатаю список прямо в сервлете, используя программу печати, и список печатается.
Когда я пытаюсь вставить jsp, список не печатает, использую ли я JSTL или скриптлеты.
Я пытался проверить в JSTL и скриптлете, является ли объект нулевым и оказывается, что это так!
Почему это происходит и как я могу это исправить?
Код сервлета, который работает
for (Artist artist:artists){
resp.getWriter().println(artist.getName());
}
Код сервлета, который помещает объект в запрос
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
ApplicationContext ctx =
new ClassPathXmlApplicationContext("com/helloworld/beans/helloworld-context.xml");
ArtistDao artistDao = (ArtistDao) ctx.getBean("artistDao");
List<Artist> artists = null;
try {
artists = artistDao.getAll();
} catch (SQLException e) {
e.printStackTrace();
}
req.setAttribute("artists", artists);
try {
req.getRequestDispatcher("index.jsp").forward(req, resp);
} catch (ServletException e) {
e.printStackTrace();
}
код скриптлета, который неожиданно находит объект null
<%
List<Artist> artists = (List<Artist>) request.getAttribute("artists");
if (artists == null) {
out.println("artists null");
}
else {
for (Artist artist: artists){
out.println(artist.getName());
}
}
%>
Даже код JSTL, кажется, согласен
<c:if test="${artists eq null}">
Artists are null
</c:if>
<c:forEach var="artist" items="${artists}">
${artist.name}
</c:forEach>
Для своего приложения я использую weblogic, весна 2.5.6 и ibatis.