displaying a list of entities in jsp file by using java

前端 未结 2 2003
无人共我
无人共我 2021-01-26 08:05

I am trying to display list of entities in a .jsp file, but I this error:

Unable to compile class for JSP: 

An error occurred at line: 28 in the jsp file: /gues         


        
2条回答
  •  北恋
    北恋 (楼主)
    2021-01-26 08:46

    In this case "${drugtargets}" is a String, not the list you passed. I would recommend using the looping. It's way cleaner.

     
    .... Your code here ...
    
    

提交回复
热议问题