spring核心配置文件_webService的服务器配置

<?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:aop="http://www.springframework.org/schema/aop"
 xmlns:context="http://www.springframework.org/schema/context" xmlns:jaxrs="http://cxf.apache.org/jaxrs"
 xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:tx="http://www.springframework.org/schema/tx"
 xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:task="http://www.springframework.org/schema/task"
 xsi:schemaLocation="
  http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
  http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
  http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
  http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
  http://www.springframework.org/schema/data/jpa
  http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">

<jaxrs:server id="promotionService" address="/promotionService" >
  <jaxrs:serviceBeans>
   <bean class="cn.itcast.bos.service.take_delivery.impl.PromotionServiceImpl" />
  </jaxrs:serviceBeans>
  <jaxrs:inInterceptors>
   <bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
  </jaxrs:inInterceptors>
  <jaxrs:outInterceptors>
   <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
  </jaxrs:outInterceptors>
 </jaxrs:server>
 <jaxrs:server id="orderService" address="/orderService" >
  <jaxrs:serviceBeans>
   <bean class="cn.itcast.bos.service.take_delivery.impl.OrderServiceImpl" />
  </jaxrs:serviceBeans>
  <jaxrs:inInterceptors>
   <bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
  </jaxrs:inInterceptors>
  <jaxrs:outInterceptors>
   <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
  </jaxrs:outInterceptors>
 </jaxrs:server>
 
 
 
</beans>

时间: 2024-10-05 03:07:14

spring核心配置文件_webService的服务器配置的相关文章

spring核心配置文件_ActiveMQ消息队列配置

<?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:aop="http://www.springframework.org/schema/a

spring核心配置文件_Shiro权限控制配置

<?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:aop="http://www.springframework.org/schema/a

spring核心配置文件_Elasticsearch搜索配置

<?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:context="http://www.springframework.org/sche

spring核心配置文件_Quartz定时任务调度配置

<?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:aop="http://www.springframework.org/schema/a

Spring核心知识点

目录 Spring概述 依赖注入 Spring Beans Spring注解 Spring的对象访问 Spring面向切面编程 Spring MVC框架 Spring概述 1.什么是Spring? Spring是一个开源的Java EE开发框架.Spring框架的核心功能可以应用在任何Java应用程序中,但对Java EE平台上的Web应用程序有更好的扩展性.Spring框架的目标是使得Java EE应用程序的开发更加简捷,通过使用POJO为基础的编程模型促进良好的编程风格. 2.Spring有

Puppet核心配置文件详解

在学习了Puppet原理及版本差异后,我们需要掌握它的核心配置文件.Puppet所有的配置都围绕着Puppet.conf展开. puppet.conf 默认配置文件目录/etc/puppet/. 由于puppet.conf配置文件内容较多,下面笔者将列举核心配置.常用配置选项(不区分Master与Agent):[main] #通用配置选项    vardir = /var/lib/puppet    confdir = /etc/puppet    logdir = /var/log/puppe

SpringMVC深度探险(四) —— SpringMVC核心配置文件详解

本文是专栏文章(SpringMVC深度探险)系列的文章之一,博客地址为:http://downpour.iteye.com/blog/1389285. 在上一篇文章中,我们从DispatcherServlet谈起,最终为读者详细分析了SpringMVC的初始化主线的全部过程.整个初始化主线的研究,其实始终围绕着DispatcherServlet.WebApplicationContext和组件这三大元素之间的关系展开. 在文章写完之后,也陆续收到了一些反馈,其中比较集中的问题,是有关WebApp

第一章 spring核心概念

一.Spring作用:管理项目中各种业务Bean(service类.Dao类.Action类),实例化类,属性赋值 二.Spring IOC(Inversion of Control )控制反转,也被称为依赖注入(Dependency Injection[DI]),是面向对象编程 中的一种设计理念,用来减轻程序代码之间的耦合度. IOC原理:侧重原理 在业务代码中不使用我们之间司空见惯的关键字new来构建一个业务实例,而是在配置文件中.通过xml节点来告知容器如何对内存中构建的对应类型的对象名称

Spring核心机制:依赖注入

控制反转(Inversion of Control,英文缩写为IoC)是一个重要的面向对象编程的法则来削减计算机程序的耦合问题,也是轻量级的Spring框架的核心. 控制反转一般分为两种类型,依赖注入(Dependency Injection,简称DI)和依赖查找(Dependency Lookup).依赖注入应用比较广泛. 使用依赖注入,可以为Bean注入普通的属性值,而且还可以注入其他Bean的引用.通过使用这种依赖注入,javaEE应用中的各种组件就不在需要以硬编码方式耦合在一起,甚至可以