摘要:
package com.pipe.webservice;import com.pipe.bean.User;public class PipeService { /** * in/out String * @param name * @return */ public String sayHello(String name) { return name + " say: hello"; } /** * in/out javabean * @return */ public User getUser(String userName) { User user = new Us. 阅读全文