修改 Javassist 代理命名策略
使用Enhancer在CGLib中创建代理时,您可以调用.setNamingPolicy(NamingPolicy n)
将代理类命名策略更改为CGLib默认值以外的策略。使用 ProxyFactory 时,有什么方法可以在 Javassist 中执行类似的操作吗?
When creating proxies in CGLib using Enhancer, you can call .setNamingPolicy(NamingPolicy n)
to change proxy class naming strategy to something other than the CGLib default. Is there any way to do something similar in Javassist when using the ProxyFactory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 ProxyFactory 的代码我会说它是至少不可能开箱即用:
Looking at the code for ProxyFactory I would say that it's not possible out-of-the-box at least:
在 GitHub 上,看起来大约 6 个月前,他们在 ProxyFactory 中添加了一个公共字段您可以替换它来更改命名策略。第一次提出问题时,这是不可用的。
On GitHub, it looks like about 6 months ago they added a public field in ProxyFactory of type UniqueName that you can replace to change the naming policy. This wasn't available when the question was first asked.