You've been redirected to this bookmarkable page with button. ViewParameter you've passed is "60"
<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;
import io.quarkus.runtime.annotations.RegisterForReflection;
@Named
@RequestScoped
@RegisterForReflection(serialization = true)
public class ProductDetailView {
private String productId;
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
}