springboot启动报错Parameter 0 of method a in com.* required a bean of type 'java.lang.String' that could

springboot服务启动报错,报错信息如下

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

Description:

Parameter 0 of method testServicein com.test.service.testService required a bean of type 'java.lang.String' that could not be found.


Action:

Consider defining a bean of type 'java.lang.String' in your configuration.

本地代码如下

package com.test.service;
@Service("test")
public class Test{
	@Autowired
	private DeviceService deviceService;
	...
	@Autowired
	@Async("asyncTestExecutor")
	public void testService(String message){
	...
	}
}

公司项目kafka服务启动报错,报错信息如上。
说报错信息是由于A类中定义了含参数的构造函数,Spring自动构造和注入时未为该Bean传入参数,引起报错。
最后是因为注释的时候没有把@Autowired一同注释掉,有一个空的@Autowired引起报错,导致项目启动报错。

若不是像我这样出现问题的,可以有其他解决办法,比如:
解决方案:使用@Bean注解手动创建ImageServiceImpl的实例,具体步骤如下:
1、定义BeanConfig类(或者将Bean的定义直接写在Application启动类中)
2、修改ImageServiceImpl(含有参构造函数的Bean)。
具体的可以查询其他

你可能感兴趣的:(报错解决,java代码)