Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
状況:
どうすればその動作を防ぐことができますか?
ふたつのやり方:
ajaxを使用してアクションを実行します(これはブラウザーの履歴を生成しません)。
<h:commandButton ...> <f:ajax execute="@form" render="@form" /> </h:commandButton>
投稿後にリダイレクトを送信します(POST-Redirect-GETパターンと呼ばれます)。
public String save() { // ... return "sameview?faces-redirect=true"; }