Iterating over ArrayList items with JSTL forEach

后端 未结 2 1924
余生分开走
余生分开走 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 12:45

    Since your adding the object to session you need to access it from sessionScope in EL.

    
    
        ${current.email}
        ${current.username}
        
    
     
    

提交回复
热议问题