I get errors when i add this ActionListener

前端 未结 1 697
不思量自难忘°
不思量自难忘° 2020-12-22 06:16

I have below code:

 

        
相关标签:
1条回答
  • 2020-12-22 06:29

    The problem is in the value of actionListener's binding attribute - it should point to an object implementing the ActionListener interface - not a method call as is in your case.

    From the JSF spec:

    Value binding expression that evaluates to an object that implements javax.faces.event.ActionListener.

    0 讨论(0)
提交回复
热议问题