调试java插件
是否可以调试java插件的小程序加载过程?
我不想调试我的小程序应用程序,我想调试java插件2的小程序加载过程。我的意思是 jnlp/jar 下载、缓存查找、证书检查等。我知道 java 插件不是开源的,但无论如何它都会有帮助。
我正在尝试解决仅在 IE 中发生的 JNLP2ClassLoader 问题。它适用于 Google Chrome 或 Firefox。该错误不太容易重现,但其中之一是“JNLP2ClassLoader.findClass:org.apache.log4j.spi.ThrowableInformation:再试一次...”。
Is it possible to debug the applet loading process of the java plugin?
I don't want to debug my applet application, I want to debug the applet loading process of the java plugin2. I mean the jnlp/jar download, cache lookup, certificate check, etc. I know the java plugin is not open source, but it would help anyway.
I'm trying to solve JNLP2ClassLoader issues happening only within IE. It works with Google Chrome or Firefox. The error is not very reproducible, but one of the is "JNLP2ClassLoader.findClass: org.apache.log4j.spi.ThrowableInformation: try again...".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以随时在 java 插件控制台中按 5 将日志级别设置为跟踪。配置插件自动打开控制台,打开后立即按 5。这将打印一堆对你有用或无用的东西。
You can set the log level to trace, pressing 5 anytime in the java plugin console. Configure the plugin to open the console automatically and press 5 as soon as it opens. this will print a bunch of stuff that can or cannot be useful to you.
我知道如果你在 init 方法之一的某个地方放置一个断点,你就可以使用 eclipse。您应该能够从调试器运行小程序,而无需网页。
I know you can with eclipse if you put a breakpoint somewhere in one of the init methods. You should be able to run an applet from your debugger without needing a webpage.