- 浏览: 3294 次
- 性别:
- 来自: 深圳
最近访客 更多访客>>
最新评论
-
gty509:
你的问题是把一个实体加载了两次。比如User。如果有get(U ...
并发访问量大时抛出的异常,是 hibernate 问题 , 还是 xfire 是问题? -
daytodayme:
@WebService(name = "Travel ...
EJB3 编写 WebService 的返回列表的问题. -
asdf93945:
没有高手有空?
EJB3 编写 WebService 的返回列表的问题. -
asdf93945:
多谢 Anatorian 的建议. :下面是我添加的修改后的结 ...
EJB3 编写 WebService 的返回列表的问题. -
Anatorian:
JAXB 不知道如何转化你的对象,你应该在chen.degui ...
EJB3 编写 WebService 的返回列表的问题.
文章列表
使用 hibernate + xfire 做 web service 时, 本地测试,或客户集成测试都没有问题, 当并发访问量大时,会出现奇怪的异常(普通的测试没有问题),如:
Fault: java.lang.NullPointerException
No row with the given identifier exists: [degui.chen.tag.Tag#246]
a different object with the same identifier value was already associated with the session: [degui.chen.tag. ...
- 2009-04-28 11:28
- 浏览 1439
- 评论(1)
服务端的 EJB 代码如下:
@WebService(name = "TravelAgent", serviceName = "TravelAgentService")
@Stateless
public class TravelAgentBean implements TravelAgentRemote {
......
@WebMethod
@WebResult(name = "List")
public List test(@WebParam(name = "name") Strin ...
- 2009-01-08 23:16
- 浏览 1855
- 评论(4)