On Sat, Sep 9, 2023 at 1:23 PM Mark Thomas <ma...@apache.org> wrote: > > On 09/09/2023 11:52, Aryeh Friedman wrote: > > Every other jsp in my webapp (and other webapps on the same tomcat > > instance [9.0.75]) works and I am using a the default container but as > > curl/catalina.out show BasePage is *NEVER* being called (either the > > _jspService() or the getX()): > > How have you configured your JSP(s) to use this alternative base class?
sudo cat /usr/local/apache-tomcat-9.0/webapps/tlaitc-dashboard-1a1/index.jsp <!-- Copyright (C) 2023 TLAITC and contributors --> <%@page extends="dashboard.web.pages.BasePage"%> hi x is ${x} Output shown in log (sorry for not including the JSP the first time) but to make it easier to find the output is "hi x is " when it should be "hi x is 123234"... as you notice there are zero errors/warning in catalina but there is none of the println's also... so the only thing I can surmise is BasePage is never being called <%@page extends="dashboard.web.pages.BasePage"%> somehow failed but I have verified that correct spelling several times and also verified any syntextual errors [including the contents of the string literal] will show up in catalina.out (i.e. wrong class name is logged as an error) -- Aryeh M. Friedman, Lead Developer, http://www.PetiteCloud.org --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org