摘要:
一: 暴露服务(HttpRequestHandlerServlet 暴露服务)package com.xx.service; public interface ISayHelloService { /** * @param name * @return */ String doSayHello(String name);
}
package com.xx.service.impl; import com.xx.service.ISayHelloService; public class DefaultSayHelloServiceImpl implements ISa... 阅读全文
摘要:
一: 暴露服务(Spring mvc暴露服务)package com.xx.service; public interface ISayHelloService { /** * @param name * @return */ String doSayHello(String name);
}package com.xx.service.impl; import com.xx.service.ISayHelloService;
public class DefaultSayHelloServiceImpl implements ISayHelloService { ... 阅读全文