Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从 Tomcat 获得了一个非常简单的网络应用程序的 404。我目前认为问题在于 servlet 映射,因为任何 Tomcat 日志中都没有错误。
有没有办法让 Tomcat 显示活动的 servlet 映射?我认为管理器控制台可能会执行此操作,但是当我单击我的应用程序的映射时,我也会得到一个 404。所以要么这不是这样做的方法,要么有其他错误没有被记录。
感谢您的任何帮助或建议,beeky
您可以通过显示它们servletContext.getServletRegistrations()- 您在那里拥有所有可用的元数据。您可以在 , 中执行此操作ServletContextListener,以便在加载上下文后立即打印所有数据。
servletContext.getServletRegistrations()
ServletContextListener