For a need, the FORMBEAN's Scope is set to session. After performing action, I found the list
I have thought about it for a while, the problem is solved. It turns out that the problem of
My solution is to manually empty the properties of FORMBEAN after executing the database operation:
... String SQL = "Insert Articles VALUES (','" myform.gettitle () "','" myform.getcontent () "" NULL, " "); "; INT i = mysql.executeUpdate (SQL); myform.settitle (null); MyForm.SetContent (null); ......