RAD Web 服务生成器和 *_Deser.java、*_Ser.java
当我从 RAD 中的 DAO 生成 Web 服务时,它会创建 Helper.java、Deser.java 和 Ser.java 类。 然后,当我将此代码放入 CVS(Clearcase) 中时,我注意到当调用我的服务时这些文件被劫持。
有没有办法避免使用这些生成的类? 谢谢
我的服务方法返回自定义对象数组。
When i generate a webservice from my DAO in RAD it creates a Helper.java, Deser.java and Ser.java classes. Then when i put this code into my CVS(Clearcase) i notice that these files get hijacked when a call is made to my service.
Is there a way to avoid using theses generated classes? Thanks
The service methods i have return custom object arrays.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,这些文件不应添加到源代码管理中,因为它们是在运行时生成的。 唯一应添加到源的文件是输入/输出/代理/soap 文件。
Generally those files should not be added to source control, as they are generated at runtime. The only files that should be added to source is the inputs/outputs/proxy/soap files.
你问是否有办法避免它们。 是的。 停止使用 JAX-RPC 并改用 JAX-WS 2.0。
You asked if there's a way to avoid them. Yes. Stop using JAX-RPC and switch to use JAX-WS 2.0.