【Exception】Parameter 1 of constructor in org.springframework.boot.autoconfigure.web.servlet.error.Er

本文解决了一个关于SpringBoot项目中整合CXF时遇到的启动失败问题。具体表现为因Servlet Bean名称冲突导致的错误,并提供了修改Bean名称的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

项目场景:

使用 Spring Boot 暴露 WebService 接口.

gav
org.springframework.boot:spring-boot-starter-web-services:2.1.13.RELEASE
org.apache.cxf:cxf-spring-boot-starter-jaxws:3.3.6
org.apache.cxf:cxf-rt-transports-http:3.3.6

问题描述:

2021-05-17 10:46:56.613 ERROR 195180 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 1 of constructor in org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration required a bean of type 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletPath' that could not be found.

The following candidates were found but could not be injected:
	- Bean method 'dispatcherServletRegistration' in 'DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration' not loaded because DispatcherServlet Registration found non dispatcher servlet dispatcherServlet


Action:

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 dispatcherServlet() {
		return new ServletRegistrationBean(new CXFServlet(), "/webservices/*");
	}
}

CXFConfig配置类里注册 Servlet 的 Bean 的 name 是dispatcherServlet,造成错误的。
因此需要调整注册的 Servlet 的 Bean 的名称。

解决方案:

调整注册的 Servlet 的 Bean 的名称,避免Bean(name = "dispatcherServlet")

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

参考

springboot整合cxf启动报错,原因是版本问题 - https://princeyao.blog.youkuaiyun.com/article/details/113177336

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值