如何处理对已编译方法的损坏引用?
在H2中,我们可以引用java类中已编译的方法,并在数据库中创建别名。
我的问题是:当java类被删除时,这个引用也会被删除吗?或者,这个参考将保持不变?
In H2, we can make reference to compiled method in java classes, and create alias in the database.
My question is: will this reference also deleted when the java classes are deleted? Or, this the reference will stay put?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
引用将保留,但在编译后的代码可用之前该方法将不起作用。
The reference will stay, but the method will not work until the compiled code is available.