You've been redirected to this bookmarkable page with button. ViewParameter you've passed is "10"
<div class="card">
    <p class="m-0">You've been redirected to this bookmarkable page with button.
        ViewParameter you've passed is <strong>"#{productDetailView.productId}"</strong>
    </p>
</div>
package org.primefaces.showcase.view.button;
import jakarta.enterprise.context.RequestScoped;
import jakarta.inject.Named;
@Named
@RequestScoped
public class ProductDetailView {
    private String productId;
    public String getProductId() {
        return productId;
    }
    public void setProductId(String productId) {
        this.productId = productId;
    }
}