@POST
@Path("/login")
ResponseResult<Object>?login(LoginMessage?message);這個是暴露出來的接口?@Override
public?ResponseResult<Object>?login(LoginMessage?message)?{
????ResponseResult<Object>?res?=?null;
????res?=?new?ResponseResult<>("1","22",new?Object());
????return?res;
}這個是接口的實現通過cxf的jsonProvider 去序列化對象 返回給前臺。但是現在我使用postMan 去測試,發(fā)現我入參能拿到,返回的時候服務器沒有答應錯誤的日志,卻在postMan 說服務器500,很奇怪。有沒有哥哥幫我看看
添加回答
舉報
0/150
提交
取消