Springboot整合cxf后不能访问controller,不能访问接口

参考版本

springboot 1.4.X  <=========>  cxf-spring-boot-starter-jaxws 3.1.X

springboot 1.5.X  <=========>  cxf-spring-boot-starter-jaxws 3.2.X

成功集成cxf后,发现只有webservice服务可以正常使用,其他请求url全部无法正常访问。然后在cxf 配置文件中 WebServiceCxfCfg.java 更改此方法名:dispatcherServlet 改为 disServlet

//public ServletRegistrationBean dispatcherServlet()  

@Bean
public ServletRegistrationBean disServlet(){

    return new ServletRegistrationBean(new CXFServlet() , "/services/*");
}

即可成功访问其他url

是因为 public ServletRegistrationBean dispatcherServlet() 把默认映射覆盖掉了,把这个名字改掉,控制类方法就能访问了。

整合的关键代码

maven

<dependency>
  <groupId>org.apache.cxf</groupId>
  <artifactId>cxf-rt-frontend-jaxws</artifactId>
  <version>3.2.6</version>
</dependency>

CxfConfig

package com.xxx.xxx.common;

import com.xxx.transfer.interceptor.IpAddressInInterceptor;
import com.xxx.transfer.webservice.DepartmentService;
import com.xxx.transfer.webservice.MedicalCardService;
import com.xxx.transfer.webservice.impl.DepartmentServiceImpl;
import com.xxx.transfer.webservice.impl.MedicalCardServiceImpl;
import org.apache.cxf.Bus;
import org.apache.cxf.bus.spring.SpringBus;
import org.apache.cxf.jaxws.EndpointImpl;
import org.apache.cxf.transport.servlet.CXFServlet;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.annotation.Resource;
import javax.xml.ws.Endpoint;

/**
 * @Description: CXF配置类
 * @date 2019/10/1617:39
 */
@Configuration
public class CxfConfig {

    @Resource
    IpAddressInInterceptor ipAddressInInterceptor;

    /**
     * 成功集成cxf后,发现只有webservice服务可以正常使用,其他请求url全部无法正常访问,是因为 public ServletRegistrationBean dispatcherServlet() 把默认映射覆盖掉了,把这个名字改掉,控制类方法就能访问了
     * 修改dispatcherServlet为disServlet
     */
    @Bean
    public ServletRegistrationBean disServlet() {
        return new ServletRegistrationBean(new CXFServlet(), "/webservice/*");
    }

    @Bean(name = Bus.DEFAULT_BUS_ID)
    public SpringBus springBus() {
        return new SpringBus();
    }

    @Bean
    public MedicalCardService medicalCardService() {
        return new MedicalCardServiceImpl();
    }

    @Bean
    public DepartmentService departmentService() {
        return new DepartmentServiceImpl();
    }

    /**
     * 诊疗卡信息查询
     *
     * @return
     */
    @Bean
    public Endpoint getPatInfo() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), medicalCardService());
        endpoint.getInInterceptors().add(ipAddressInInterceptor);
        endpoint.publish("/pat");
        return endpoint;
    }

    /**
     * 获取挂号科室
     *
     * @return
     */
    @Bean
    public Endpoint getDeptList() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), departmentService());
        //添加校验拦截器
        endpoint.getInInterceptors().add(ipAddressInInterceptor);
        endpoint.publish("/dept");
        return endpoint;
    }
}

service

package com.xxx.xxx.webservice;

import javax.jws.WebParam;
import javax.jws.WebService;

/**
 * @Description: 获取挂号科室
 * @date 2019/10/1617:35
 */
@WebService(
        // 暴露服务名称
        name = "getDeptList",
        // 命名空间,一般是接口的包名倒序
        targetNamespace = "http://webservice.transfer.webservice.com"
)
public interface DepartmentService {

    /**
     * 获取挂号科室
     */
    public String getDeptList(
            //    xxxx
            @WebParam(name = "xxx") String xxx,
            //    xxx
            @WebParam(name = "xxx") String xxx,
            //    xxx
            @WebParam(name = "xxx") String xxx,
            //    xxx
            @WebParam(name = "xxx") String xxx
    );
}
package com.xxx.xxx.webservice.impl;

import com.xxx.xxx.webservice.DepartmentService;

import javax.jws.WebService;

/**
 * @Description:
 * @date 2019/10/1617:38
 */
@WebService(
        // 与接口中指定的name一致
        serviceName = "getDeptList",
        // 与接口中的命名空间一致,一般是接口的包名倒
        targetNamespace = "http://webservice.transfer.webservice.com",
        // 接口地址
        endpointInterface = "com.xxx.transfer.webservice.DepartmentService"
)
public class DepartmentServiceImpl implements DepartmentService {
    @Override
    public String getDeptList(String guahaofs, String riqi, String guahaobc, String guahaolb) {
        return "success";
    }
}

原文地址:https://www.cnblogs.com/cnsdhzzl/p/11727571.html

时间: 2024-10-02 01:37:14

Springboot整合cxf后不能访问controller,不能访问接口的相关文章

webService学习之路(三):springMVC集成CXF后调用已知的wsdl接口

webService学习之路一:讲解了通过传统方式怎么发布及调用webservice webService学习之路二:讲解了SpringMVC和CXF的集成及快速发布webservice 本篇文章将讲解SpringMVC+CXF环境下,怎么调用其他系统通过webService方式暴露出来的接口 ① 为避免怀疑同一个项目中调用本项目的接口,这里我新打开一个eclipse通过最原始的方式发布了一个webservice并启动保证可以被访问 打开浏览器确认可以被访问 ②进入CXF/bin 利用wsdl2

springboot 整合 CXF 版本异常 java.lang.NoClassDefFoundError:ServletRegistrationBean

在使用SpringBoot 项目整合webservice组件 CXF的时候,在启动时,抛出异常如下,查阅资料初步判断为版本问题.升级到高版本后正常启动. cxf 刚开始使用版本  3.1.7 后更新为 3.2.5 . 参考借鉴: spring boot 1.4 版本对应cxf-spring-boot-starter-jaxws   3.1.X  版本 spring boot 1.5 版本对应cxf-spring-boot-starter-jaxws   3.2.X  版本 https://blo

SpringBoot整合cxf发布webService

1. 看看项目结构图 2. cxf的pom依赖 1 <dependency>2 <groupId>org.apache.cxf</groupId>3 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>4 <version>3.2.4</version>5 </dependency> 3. 开始编写webService服务端3.1 实体类entity 1

在springboot整合thymeleaf模板引擎中@Controller和@RestController不同注解的跳转页面方法

注:本文纯属学习记录,以备后续查阅! 1.通过@RestController注解实现页面跳转: 对应H5静态页面 2.使用@Controller注解实现页面跳转 对应H5静态页面: 之所以会出现@Controller和@RestController两种注解实现跳转页面不同的方式主要的原因是: 通过@RestController源码知道@RestController是@Controller和@ResponseBody的组合注解 如果需要跳转到指定 的页面,需要使用@Controller注解和视图解

七、springboot整合Spring-data-jpa(二)之通用DAO接口与添加自定义方法

@NoRepositoryBean:Spring Data Jpa在启动时就不会去实例化BaseRepository这个接口 1.通用接口: import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.repository.N

解决在Filter中读取Request中的流后,后续controller或restful接口中无法获取流的问题

首先我们来描述一下在开发中遇到的问题,场景如下: 比如我们要拦截所有请求,获取请求中的某个参数,进行相应的逻辑处理:比如我要获取所有请求中的公共参数 token,clientVersion等等:这个时候我们通常有两种做法 前提条件是我们实现Filter类,重写doFilter方法 1.通过getParameter方法获得 HttpServletRequest hreq = (HttpServletRequest) req; String param = hreq.getParameter("pa

SpringBoot整合redis缓存(一)

准备工作 1.Linux系统 2.安装redis(也可以安装docker,然后再docker中装redis,本文章就直接用Linux安装redis做演示) redis下载地址:http://download.redis.io/releases/redis-4.0.14.tar.gz 修改redis,开启远程访问 找到redis中的redis.conf文件并编辑(在安装路径中找到) vim ./redis.conf 1.找到bind 127.0.0.1并注释掉 默认127.0.0.1只能本地访问,

SpringBoot整合Shiro 涉及跨域和@Cacheable缓存/@Transactional事务注解失效问题(五)

1. 跨域(多出现在前后端分离项目中) (1) 跨域介绍可参考:跨域(CORS) (2) SpringBoot中解决跨域方式有: A. 使用@CrossOrigin注解: B. 实现Filter类,重写doFilter方法 package com.ruhuanxingyun.config; import cn.hutool.core.util.StrUtil; import org.springframework.context.annotation.Configuration; import

struts2整合axis2后,访问不到wsdl,被struts2拦截的解决办法

在struts2中整合axis2后,访问wsdl的时候显示404  not found There is no Action mapped for action name xxxxxxxx. 解决办法: 在struts.xml配置文件中加入排除过滤的地址 <constant name="struts.action.excludePattern" value="/services.*"/> value中的“.”符号是必须的,如过滤地址为  “/servic