WebService autoconfigure.web.servlet.DispatcherServletPath

SpringBoot WebService 源代码:https://gitee.com/VipSoft/VipWebService

SpringBoot 整合 WebService cxf 报错

Consider revisiting the entries above or defining a bean of type 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletPath' in your configuration.

@Configuration
public class CxfConfig {
    @Bean
    public ServletRegistrationBean cxfServlet() {
        return new ServletRegistrationBean(new CXFServlet(), "/ws/*");
    }

...........

@Configuration
public class CxfConfig {
    @Bean(name = "cxfServlet")
    public ServletRegistrationBean cxfServlet() {
        return new ServletRegistrationBean(new CXFServlet(), "/ws/*");
    }

 

posted @ 2021-07-09 22:31  VipSoft  阅读(186)  评论(0编辑  收藏  举报