少年阿賓

          那些青春的歲月

            BlogJava :: 首頁 :: 聯(lián)系 :: 聚合  :: 管理
            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>
             <!--日志攔截功能,用于監(jiān)控soap內(nèi)容,開發(fā)后可以刪除 -->
             <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應用上下文環(huán)境
           private static ApplicationContext applicationContext = new ClassPathXmlApplicationContext(
             "com/abin/lee/cxf/applicationContext-cxf.xml");

           /**
            * 實現(xiàn)ApplicationContextAware接口的回調(diào)方法,設置上下文環(huán)境
            *
            * @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);
           }
          }


          主站蜘蛛池模板: 孟津县| 吉林省| 墨竹工卡县| 淮滨县| 樟树市| 喀喇沁旗| 民权县| 深水埗区| 萨嘎县| 仲巴县| 桑日县| 惠水县| 黄大仙区| 澄江县| 平江县| 黄冈市| 池州市| 娱乐| 越西县| 常德市| 汾阳市| 龙里县| 封丘县| 绥中县| 盐津县| 张北县| 深圳市| 循化| 东乡县| 中宁县| 鲁山县| 宜宾县| 思茅市| 万全县| 包头市| 饶河县| 灌南县| 通榆县| 漳平市| 金坛市| 杨浦区|