识别哪些 JSP 文件正在运行
我从事一个巨大的 jsp/servlet 项目,它有一个模板系统,并且相当复杂(很难指出导入了哪些 jsp 文件,因为它基于所选的模板和一些其他参数)。当我使用 Web 浏览器测试站点时我想确定哪个 jsp 文件正在运行,而不向大量 jsp 文件添加调试信息。我怎么能这么做呢?有什么窍门吗? 顺便说一下我用的是eclipse和tomcat。
I work on a huge jsp/servlet project and it has a templating system and it is fairly complex (hard to point which jsp files are imported because it is based on chosen template and some other parameters).When I test the site with web browser I want to identify which jsp file is running without adding debug information to lots of jsp files. How could I do that? Any trick?
By the way I use eclipse and tomcat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个
Filter
,其中映射如下,并在 doFilter() 方法中大致执行以下工作。
Create a
Filter
which is mapped as followsand does roughly the following job in the
doFilter()
method.