2012年4月9日
摘要: 一: 暴露服务(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... 阅读全文
posted @ 2012-04-09 16:06 YangJin 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 一: 暴露服务(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 { ... 阅读全文
posted @ 2012-04-09 15:31 YangJin 阅读(155) 评论(0) 推荐(0) 编辑