我正在尝试创建一个Web服务。
我有一个带有Hibernate注释的UserVO类,其属性为login,password和id。
我需要返回对象但是使用这些注释我有这个错误:
Service invocation threw an exception with message : null; Refer to the server log for more details
Exceptions details : java.lang.reflect.InvocationTargetException
但如果我接受注释,事情就会奏效。
答案 0 :(得分:1)
当您将对象公开为Web服务时,协议无法创建注释的定义...
我强烈建议您创建一组数据传输对象,这些对象可以转换为您的休眠模型并返回...这将简化您的设计。