ManagedBean property not found

前端 未结 4 1812
夕颜
夕颜 2021-01-03 12:58

In my webapp, when I click on the login link, the Tomcat webserver throws the following exception:

exception
javax.servlet.ServletException: /aluno_jsf.xhtml         


        
4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-03 13:52

    Logout isn't a property accessor, it's a method.

    Try this: #{loginMB.logout()} instead

提交回复
热议问题