如何更改 XML 模式中类的访问修饰符
我正在编写一个 XML 模式文件并从中生成类。生成的类始终是公共的。我想要的是仅让类包可见。这可能吗?如果是,请给我提示。
谢谢你!
I am writing an XML schema file and I generate classes from it. The generated classes are always public. What I want is to have the classes package-visible only. Is this possible ? If yes, please give me a hint.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 wsimport 时,只能生成公共类。因此,如果您想让它们受到包保护,那么您唯一的选择就是在生成的文件中搜索/替换。但是,根据您想要对生成的类执行的操作,对它们进行包保护可能没有意义。
When using wsimport, it's only possible to generate public classes. So your only option then is to search/replace in the generated files, if you want to make them package protected. However, depending on what you want to do with the generated classes, it may not make sense to make them package protected.
您可以编写一个 XJC 插件来完成此操作:
You could write an XJC plug-in to accomplish this: