04 2012 档案

摘要:环境:1、sun jdk1.6.02、jprofiler_windows_6_0_2.exe安装1. jdk, 安装略...2. jprofiler安装一路next 到Enter license key 界面key :L-Larry_Lau@163.com#78484-akisfpr22a5j#268在一直next到finish 很简单配置监控tomcat web项目剩下的三步都默认 一路next下去 完成启动 阅读全文
posted @ 2012-04-30 22:46 ITA之路 阅读(123) 评论(0) 推荐(0)
摘要:一:发布服务web.xml <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/config/applicationContext.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listene 阅读全文
posted @ 2012-04-27 11:02 ITA之路 阅读(111) 评论(0) 推荐(0)
摘要:一: 暴露服务(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之路 阅读(121) 评论(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之路 阅读(172) 评论(0) 推荐(0)