Hi guys! I`ve wrote my own ViewControllerMapper implementation but its
not working. I mapped it in the web.xml like that:
        <context-param>
                <param-name>
                        org.apache.shale.view.VIEW_CONTROLLER_MAPPER
                </param-name>
                <param-value>test.VCMapper</param-value>
        </context-param>
wrote test.VCMapper class that implements ViewControllerMapper

mapViewId method code:
public String mapViewId(String viewId) {
        log.debug(viewId);
        return null;
}

But the method mapViewId is not invoked. Any suggestions?

--
Seeing is believing

Reply via email to