少年阿賓

          那些青春的歲月

            BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
            500 Posts :: 0 Stories :: 135 Comments :: 0 Trackbacks

          /**
           *
           */
          package com.abin.lee.cxf;

          import javax.jws.WebService;

          /**
           * @author abin
           *
           */
          @WebService(targetNamespace="cxf.lee.abin.com")
          public interface IUserService {
           public String getMessage(String message);
          }





          package com.abin.lee.cxf;

          import javax.jws.WebService;

          @WebService(endpointInterface="com.abin.lee.cxf.IUserService")
          public class UserService implements IUserService{

           public String getMessage(String message) {
            return message+" welcome to beijing";
           }
           
          }






          <?xml version="1.0" encoding="UTF-8"?>
          <beans xmlns=" xmlns:xsi=" xmlns:tx=" xmlns:jaxws=" xmlns:cxf=" xmlns:wsa=" xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-beans-3.0.xsd
           http://cxf.apache.org/core
           http://cxf.apache.org/schemas/core.xsd
           http://cxf.apache.org/jaxws
           http://cxf.apache.org/schemas/jaxws.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
           http://www.springframework.org/schema/context
            <import resource="classpath:META-INF/cxf/cxf.xml" />
           <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
           <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
           
           <cxf:bus>
            <cxf:features>
             <!--日志攔截功能,用于監控soap內容,開發后可以刪除 -->
             <cxf:logging/>
             <wsa:addressing/>
            </cxf:features>
           </cxf:bus> 

           <bean id="userService" class="com.abin.lee.cxf.UserService"></bean>
           <jaxws:endpoint id="userWebservice" implementor="#userService" address="/UserService" publish="true" />


          </beans>

           





          <context-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>
             <!--
               classpath*:com/abin/lee/spring/queue/applicationContext-springqueue.xml,
               classpath*:com/abin/lee/quartz/applicationContext-quartzCluster.xml,
               classpath*:com/abin/lee/quartz/applicationContext-quartzHeartCluster.xml,
               classpath*:com/abin/lee/quartz/applicationContext-activemq.xml
             -->
             classpath*:com/abin/lee/cxf/applicationContext-cxf.xml
            </param-value>
           </context-param>
           <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
           </listener>
           <!--cxf服務啟動servlet-->
           <servlet>   
            <servlet-name>CXFServlet</servlet-name>   
            <servlet-class>   
                      org.apache.cxf.transport.servlet.CXFServlet    
            </servlet-class>   
            <load-on-startup>1</load-on-startup>   
           </servlet>   
           <servlet-mapping>   
            <servlet-name>CXFServlet</servlet-name>   
            <url-pattern>/service/*</url-pattern>   
           </servlet-mapping> 






          package com.abin.lee.spring;

          import org.springframework.beans.BeansException;
          import org.springframework.context.ApplicationContext;
          import org.springframework.context.ApplicationContextAware;
          import org.springframework.context.support.ClassPathXmlApplicationContext;

          /**
           *
           * 獲取spring容器,以訪問容器中定義的其他bean
           *
           * @author lyltiger
           * @since MOSTsView 3.0 2009-11-16
           */
          public class SpringContextUtil implements ApplicationContextAware {

           // Spring應用上下文環境
           private static ApplicationContext applicationContext = new ClassPathXmlApplicationContext(
             "com/abin/lee/cxf/applicationContext-cxf.xml");

           /**
            * 實現ApplicationContextAware接口的回調方法,設置上下文環境
            *
            * @param applicationContext
            */
           public void setApplicationContext(ApplicationContext applicationContext) {
            SpringContextUtil.applicationContext = applicationContext;
           }

           /**
            * @return ApplicationContext
            */
           public static ApplicationContext getApplicationContext() {
            return applicationContext;
           }

           /**
            * 獲取對象 這里重寫了bean方法,起主要作用
            *
            * @param name
            * @return Object 一個以所給名字注冊的bean的實例
            * @throws BeansException
            */
           public static Object getBean(String name) throws BeansException {
            return applicationContext.getBean(name);
           }

          }









          package com.abin.lee.cxf.test;

          import com.abin.lee.cxf.UserService;
          import com.abin.lee.spring.SpringContextUtil;

          import junit.framework.TestCase;

          public class TestUserService extends TestCase{
           public void testcxf(){
            UserService userService=(UserService)SpringContextUtil.getBean("userService");
            
            String response=userService.getMessage("abin");
            System.out.println("response="+response);
            System.exit(0);
           }
          }


          主站蜘蛛池模板: 曲水县| 简阳市| 洛隆县| 巩义市| 新宁县| 兖州市| 益阳市| 吉林市| 黔西县| 宝清县| 平乐县| 米泉市| 麻城市| 西乡县| 克拉玛依市| 台东市| 襄汾县| 闽清县| 湖州市| 潜山县| 南雄市| 嘉黎县| 雅江县| 邻水| 郸城县| 宁明县| 安仁县| 邳州市| 锡林郭勒盟| 垣曲县| 东光县| 晋州市| 永福县| 舞阳县| 宜兰市| 随州市| 张掖市| 金湖县| 仁化县| 黄平县| 开鲁县|