使用 Eclipse 调试 GlassFish 全局过滤器
我正在开发一个过滤器来处理对 GlassFish v3.01 发出的所有请求,因此我在 default-web.xml 中添加了一个配置。一切工作正常,但我无法在 Eclipse 中启动调试会话。编译好的jar文件位于domain1/lib下。
有人知道我如何实现这一目标吗?
谢谢你,祝你有美好的一天。
I'm developping a filter to handle all request made to my GlassFish v3.01 so I added a configuration in the default-web.xml Everything is working fine, but I'm not able to start debugging session in Eclipse. The compiled jar file is under domain1/lib.
Does someone have an idea on how I could achieve this?
Thank you, have a nice day.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决问题的办法。为了能够使用 eclipse 调试 GlassFish Global 过滤器,我们需要创建一个新的调试配置。这必须是端口 9009 的远程 java 应用程序配置。您必须在管理页面上的 JVM 设置中激活调试器。然后我们就可以开始调试配置,并且断点将正常工作。
我在这里找到了信息:
http://www.shareyourwork.org/roller/ralphsjavablog/entry/debugging_glassfish_with_eclipse
谢谢。
I found a solution to the problem. To be able to debug a GlassFish Global filter with eclipse, we need to create a new debug configuration. This must be a remote java application config with port 9009. You must activate the Debugger in the JVM Setting on the admin page. Then we're able to start the debug configuration and the break points will work just fine.
I found the information here:
http://www.shareyourwork.org/roller/ralphsjavablog/entry/debugging_glassfish_with_eclipse
Thanks.