Iterating over ArrayList items with JSTL forEach

后端 未结 2 1893
余生分开走
余生分开走 2021-01-20 12:22

I\'m having problem running over ArrayList items and displaying them in JSP file.

Here is my bean:

public class UsersList {
    private ArrayList<         


        
2条回答
  •  有刺的猬
    2021-01-20 13:05

    Check if your prefix "c" points to the right tag library.

    It should be

    "http://java.sun.com/jsp/jstl/core"

    If that does not work, check if there is mistake in the logic of populating the data.

提交回复
热议问题