How to render another page on Java

public class ShowView extends VerticalLayout implements View {

    public ShowView() {
        Listing listingPage = new Listing();
        addComponent(listingPage);
        // TODO add user code here
    }

"Listing" is object

Comments