關(guān)于webservice接口傳對(duì)象,webservice接口這個(gè)問(wèn)題很多朋友還不知道,今天小六來(lái)為大家解答以上的問(wèn)題,現(xiàn)在讓我們一起來(lái)看看吧!
1、Webservice接口可以用來(lái)對(duì)外暴露WEB服務(wù)。
2、有了接口就可以寫對(duì)應(yīng)實(shí)現(xiàn)類。
3、然后發(fā)布WEB服務(wù)這是一個(gè)例子:@WebServicepublic interface UserService { /** * 獲取驗(yàn)證碼 * @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);}。
本文分享完畢,希望對(duì)大家有所幫助。
標(biāo)簽:
免責(zé)聲明:本文由用戶上傳,如有侵權(quán)請(qǐng)聯(lián)系刪除!