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>
@Named
@RequestScoped
public class ProductDetailView {
private String productId;
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
}