JSF navigation redirect to previous page

前端 未结 7 1563
一向
一向 2020-12-09 07:06

Once the user successful login to the system, the system will redirect the user to the homepage. Now my problem is, if the user clicks on the view account page without login

7条回答
  •  伪装坚强ぢ
    2020-12-09 07:26

    java.lang.IllegalStateException: Cannot forward after response has been committed

    The exception is fairly clear:

    • The response has been committed.
    • You cannot forward after the response has been committed.

    What doesn't make sense?

提交回复
热议问题