`
sanshi
  • 浏览: 83527 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

CXF

    博客分类:
  • java
阅读更多

 CXF服务器端Spring配置文件:

       <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:jaxws="http://cxf.apache.org/jaxws"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
 http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">

 <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" />
 
   <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
  destroy-method="close" >
  <property name="driverClassName">
   <value>oracle.jdbc.driver.OracleDriver</value>
  </property>
  <property name="url">
   <value>jdbc:oracle:thin:@192.168.2.100:1521:orcl</value>
  </property>
  <property name="username">
   <value>sanshi</value>
  </property>
  <property name="password">
   <value>sanshi</value>
  </property>
  <property name="maxActive">
   <value>20</value>
  </property>
  <property name="maxIdle">
   <value>10</value>
  </property>
  <property name="maxWait">
   <value>-1</value>
  </property>
 </bean>
 
 
  
 <bean id="sessionFactory"
  class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
  <property name="dataSource">
   <ref bean="dataSource" />
  </property>
  
  <property name="mappingLocations">
   <list>
    <value>classpath*:/com/hongxin/entity/*.hbm.xml</value>
 
   </list>
  </property>
  <property name="hibernateProperties">
   <props>
    <prop key="hibernate.dialect"> org.hibernate.dialect.Oracle10gDialect
 </prop>
    <prop key="hibernate.show_sql">true</prop>
    <prop key="hibernate.format_sql">true</prop>
    
    <prop key="hibernate.hbm2ddl.auto">update</prop>
    
    <prop key="hibernate.jdbc.fetch_size">50</prop>
   </props>
  </property>
 </bean>
 
 <bean id="transactionManager"
  class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory">
   <ref local="sessionFactory" />
  </property>
 </bean>
  <bean id="txProxyTemplate" abstract="true" lazy-init="true"
  class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
  <property name="transactionManager">
   <ref bean="transactionManager" />
  </property>
  <property name="transactionAttributes">
   <props>
    <prop key="save*">PROPAGATION_REQUIRED</prop>
    <prop key="remove*">PROPAGATION_REQUIRED</prop>
    <prop key="delete*">PROPAGATION_REQUIRED</prop>
    <prop key="*">PROPAGATION_REQUIRED</prop>
   </props>
  </property>
 </bean>
 
     <bean id="userAccountDaoInterface" class="com.hongxin.userAccount.UserAccountDaoInterfaceImpl">
     <property name="sessionFactory">
       <ref bean="sessionFactory"/>
      </property>
    </bean>
    <bean id="accountDaoInterface" class="com.hongxin.account.AccountDaoInterfaceImpl" autowire="byName">
      <property name="sessionFactory">
       <ref bean="sessionFactory"/>
      </property>
    </bean>
    <bean id="sendMessageDaoInterface" class="com.hongxin.sendMessage.SendMessageDaoInterfaceImpl">
      <property name="sessionFactory">
       <ref bean="sessionFactory"/>
      </property>
    </bean>
    <bean id="sxtClient" class="com.hongxin.sendMessage.SXTClient" autowire="byName">
     <property name="accountDaoInterface">
      <ref bean="accountDaoInterface"/>
     </property>
    </bean>
    <bean id="receiveMessageDaoInterface" class="com.hongxin.receiveMessage.ReceiveMessageDaoInterfaceImpl">
      <property name="sessionFactory">
       <ref bean="sessionFactory"/>
      </property>
    </bean>
    <bean id="sendMessageInterface" class="com.hongxin.sendMessage.SendMessageInterfaceImpl" autowire="byName">
    </bean>
    <bean id="receiveShortMessageService" class="com.hongxin.receiveMessageQuartzJob.ReceiveShortMessageServiceImpl" autowire="byName"/>
    <bean id="quartzJob" class="com.hongxin.receiveMessageQuartzJob.ReceiveShortMessageQuartzJob" autowire="byName"/>
  
    <jaxws:endpoint id="accountService"
  implementor="#accountDaoInterface" address="/accountServices">
 </jaxws:endpoint>
    <jaxws:endpoint id="receiveMessage"
  implementor="#receiveMessageDaoInterface" address="/receiveMessage">
 </jaxws:endpoint>
 <jaxws:endpoint id="querySendMessage"
  implementor="#sendMessageDaoInterface" address="/querySendMessage">
 </jaxws:endpoint>
 <jaxws:endpoint id="sendMessage"
  implementor="#sendMessageInterface" address="/sendMessage">
 </jaxws:endpoint>
 <jaxws:endpoint id="userAccount"
     implementor="#userAccountDaoInterface" address="/userAccount">
 </jaxws:endpoint>
    <bean id="jobtask" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
      <!-- 调用的类 -->           
       <property name="targetObject">
           <ref bean="quartzJob"/>
        </property>            
      <!-- 调用类中的方法 --> 
      <property name="targetMethod">
      <value>executeJob</value>
      </property>
    </bean> 
    <!-- 定义触发时间 -->
    <bean id="doTime" class="org.springframework.scheduling.quartz.CronTriggerBean">
    <property name="jobDetail">
    <ref bean="jobtask"/>
    </property>
     <!-- cron表达式 -->
     <property name="cronExpression">
       <value>0 */4 * * * ?</value>
    </property>
    </bean>   
     <!-- 总管理类 如果将lazy-init='false'那么容器启动就会执行调度程序  -->
     <bean id="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
       <property name="triggers">
          <list>
            <ref bean="doTime"/>
          </list>
       </property>
     </bean>  
</beans>

 

web.xml配置文件:

   <?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
 xmlns="http://java.sun.com/xml/ns/javaee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>
   classpath:applicationContext.xml   
  </param-value>
 </context-param>
 <servlet>
  <servlet-name>CXFServlet</servlet-name>
  <servlet-class>
   org.apache.cxf.transport.servlet.CXFServlet
  </servlet-class>
  <load-on-startup>2</load-on-startup>
 </servlet>
 <servlet-mapping>
  <servlet-name>CXFServlet</servlet-name>
  <url-pattern>/services/*</url-pattern>
 </servlet-mapping>
 <listener>
  <listener-class>
   org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
在接口上注明@WebService

在实现类上注明:@WebService(endpointInterface = "com.hongxin.receiveMessage.ReceiveMessageDaoInterface")括号里是要实现的接口

分享到:
评论
3 楼 JackCoffee 2010-09-24  
      <!-- 调用的类 -->           
       <property name="targetObject">
           <ref bean="quartzJob"/>
        </property>            
      <!-- 调用类中的方法 --> 
      <property name="targetMethod">
      <value>executeJob</value>
      </property>

请问下楼主:在调用类中的方法时,其中的name就是我们要调用的方法吗?还是<value>executeJob</value>中的executeJob就是我们要调用的方法呢?



2 楼 luoxiaohui_java 2010-04-13  
不知所云!!
1 楼 dinguangx 2010-03-23  
哥啊,全是代码没个说明呢

相关推荐

    cxf的jar包

    CXF(CXF: Composite eXtensible Services Framework)是一个开源的Java框架,它用于构建和开发服务导向架构(SOA)中的Web服务。CXF允许开发者以他们选择的语言(如Java)编写服务端和客户端代码,同时支持多种Web...

    cxf框架包 apache-cxf-3.4.3.tar.gz

    Apache CXF是一个开源的Java框架,它主要用于构建和开发Web服务。这个框架允许开发者通过SOAP、RESTful HTTP、XML以及各种协议来实现服务接口。在本案例中,我们讨论的是"apache-cxf-3.4.3.tar.gz",这是Apache CXF ...

    cxf 3.1.1 jar包

    CXF(CXF: The Apache CXF project is an open source services framework)是一个开源的Java服务框架,它允许开发者创建和消费各种Web服务。CXF的名字来源于"Code first"和"XML first",代表着它支持从Java代码或者...

    Cxf转换器示例

    【Cxf转换器示例】是一个关于Web服务技术的实践项目,主要聚焦于Apache CXF框架中的转换器(Converter)功能。Apache CXF是一个开源的Java框架,它用于构建和开发服务导向架构(SOA)和RESTful应用程序。CXF不仅支持...

    Spring CXF Restful 实例

    在IT行业中,Spring CXF是一个广泛使用的开源框架,它整合了Spring框架的功能和Apache CXF的服务堆栈,为开发人员提供了构建和实现Web服务的强大工具。在这个“Spring CXF Restful实例”中,我们将深入探讨如何利用...

    CXF-3.1.11jar包

    Apache CXF是一个开源的服务框架,它允许开发人员创建和消费各种Web服务。CXF这个名字来源于两个项目的合并:Celtix和XFire,这两个项目都专注于Web服务的实现。CXF3.1.11是该框架的一个特定版本,发布于某个时间点...

    apache-cxf-3.1.6所有jar包

    Apache CXF 是一个开源的Java框架,主要用于构建和开发服务导向架构(SOA)和Web服务。这个"apache-cxf-3.1.6所有jar包"的压缩文件包含了CXF 3.1.6版本的所有核心库和依赖组件。在Java Web服务开发中,CXF扮演着重要...

    CXF打印SOAP报文,记录WebService日志

    ### CXF打印SOAP报文与记录WebService日志 在企业级应用开发中,尤其是涉及到服务端接口(如WebService)的设计与实现时,日志记录变得尤为重要。它不仅可以帮助开发者更好地理解系统运行状况、定位问题所在,还能...

    cxf spring maven 实例

    【标题】"CXF Spring Maven 实例"是一个关于如何整合并使用这些技术创建Web服务的教程。CXF是一个开源框架,主要用于构建和部署SOAP和RESTful Web服务,Spring则是一个广泛应用的Java企业级开发框架,而Maven是项目...

    apache-cxf-2.5.2

    Apache CXF 是一个开源的Java框架,用于构建和开发服务导向架构(Service-Oriented Architecture, SOA)和Web服务。这个"apache-cxf-2.5.2"版本是该框架的一个特定发行版,发布于2011年,包含了CXF框架的所有组件和...

    cxf依赖jar包.zip

    在IT行业中,CXF是一个广泛使用的开源框架,主要用于构建和开发Web服务。它不仅支持SOAP,还支持RESTful API,提供了强大的服务实现和消费能力。本篇将详细讲解如何使用CXF来集成Web Service接口到一个Web项目中,...

    apache-cxf-2.7.11

    Apache CXF是一个开源的Java框架,它主要用于构建和开发服务导向架构(SOA)和Web服务。CXF这个名字是"CXF"前两个版本的名字——"Celtic XFire"和"XFire"的组合,它代表了这个框架在集成不同技术栈上的连续性和进化...

    cxf与axis2区别

    CXF与Axis2框架区别详解 CXF和Axis2是两个流行的Webservice框架,都是由现有的项目逐渐演化而来的。Axis2是由Axis1.x系列演化而来,而Apache CXF则是由Celtix和XFire项目整合而生。在本文中,我们将探讨CXF和Axis2...

    apache-cxf-2.7.7.zip

    Apache CXF是一个开源的Java框架,它主要用于构建和开发Web服务。这个"apache-cxf-2.7.7.zip"压缩包包含了CXF框架的2.7.7版本,这是一个在2013年发布的稳定版本。CXF是Apache软件基金会的项目,它集成了多种Web服务...

    cxf-2.4.2 jar包

    CXF(CXF: Composite eXtensible Framework)是一个开源的Java框架,它主要用于构建和服务导向架构(SOA)。CXF允许开发人员通过多种Web服务协议(如SOAP、RESTful HTTP、XML/HTTP等)来创建和消费Web服务。在这个...

    cxf-3.1.6的所需要的包

    Apache CXF是一个开源的Java框架,它用于构建和部署Web服务。CXF允许开发者通过SOAP、RESTful API、XML以及各种协议和绑定来创建服务。在这个"**cxf-3.1.6**"的压缩包中,包含了运行CXF Web服务所需的基本组件,使得...

    cxf最少依赖jar包

    【CXF最少依赖JAR包】是针对Apache CXF框架的一种精简打包方式,旨在减少项目中的依赖体积,提高项目的加载速度和管理效率。Apache CXF是一个开源的、基于Java的Web服务框架,它允许开发者创建和消费各种类型的Web...

    apache-cxf-2.7.7以及cxf客户端所需要的jar包

    Apache CXF是一个开源的Java框架,它主要用于构建和开发Web服务。这个压缩包"apache-cxf-2.7.7以及cxf客户端所需要的jar包"包含了Apache CXF 2.7.7版本及其客户端运行所需的库文件。这些jar包对于创建、部署和消费...

    apache-cxf 2.2.8版本下载

    Apache CXF是一个开源的Java框架,它主要用于构建和开发服务导向架构(SOA)和Web服务。这个项目的核心目标是提供一个工具集,使开发者能够轻松地创建和部署基于SOAP和RESTful的服务。CXF这个名字来源于两个曾经流行...

    springBoot完整整合WebService框架CXF示例

    SpringBoot与CXF整合是构建基于Web服务的应用程序的一个常见实践。CXF是一个开源的Java框架,用于构建和开发服务导向架构(SOA)应用程序,它支持SOAP和RESTful服务。SpringBoot则简化了Spring应用的初始化和配置,...

Global site tag (gtag.js) - Google Analytics