摘要: 一: 暴露服务(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 ITA之路 阅读(120) 评论(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 ITA之路 阅读(170) 评论(0) 推荐(0)