webservice接口是什么东西?在哪里能用到?怎么用 那位大神指导指导我啊 谢谢了
1个回答
展开全部
Webservice接口可以用来对外暴露WEB服务,有了接口就可以写对应实现类,然后发布WEB服务
这是一个例子:
@WebService
public interface UserService {
/**
* 获取验证码
* @param phone
* @return
*/
public UserRequestCaptchaResponse requestCaptcha(@WebParam(name="phone") String phone);
/**
* 激活
* @param phone
* @param inputCode
* @return
*/
public UserActivateResponse activate(@WebParam(name="phone") String phone, @WebParam(name="code") String inputCode);
/**
* TODO DELETE at publish
* @deprecated
* @param userId
* @return
*/
public UserGetKeysResponse getKeys(@WebParam(name="userId") String userId);
}
这是一个例子:
@WebService
public interface UserService {
/**
* 获取验证码
* @param phone
* @return
*/
public UserRequestCaptchaResponse requestCaptcha(@WebParam(name="phone") String phone);
/**
* 激活
* @param phone
* @param inputCode
* @return
*/
public UserActivateResponse activate(@WebParam(name="phone") String phone, @WebParam(name="code") String inputCode);
/**
* TODO DELETE at publish
* @deprecated
* @param userId
* @return
*/
public UserGetKeysResponse getKeys(@WebParam(name="userId") String userId);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询