java - Embedded Tomcat doesn't execute jsf pages -
solved: used wrong namespace, see explanation after post. when trying run embedded tomcat , navigating jsf page, jsf tags rendered page , doesn't executed. edit: added maven project to https://github.com/traugott/embedded-tomcat-example-jsf-dont-work.git simply clone with git clone https://github.com/traugott/embedded-tomcat-example-jsf-dont-work.git the file create tomcat embedded server is: package launch; import java.io.file; import org.apache.catalina.context; import org.apache.catalina.core.aprlifecyclelistener; import org.apache.catalina.core.standardserver; import org.apache.catalina.startup.tomcat; public class main { public static void main(string[] args) throws exception { string webappdirlocation = "src/main/webapp/"; tomcat tomcat = new tomcat(); tomcat.setport(8080); tomcat.setbasedir("."); tomcat.gethost().setappbase("."); tomcat.setsilent(false); // add aprlifecyclelistener stand...