admin管理员组文章数量:1340395
报错信息:
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2023-06-20 17:41:32.653 ERROR 9192 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 1 of constructor in com.linksoul.zfau.aiops.service.MsgPushServiceImpl 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.
@Service
@AllArgsConstructor
public class MsgPushServiceImpl {
@Value("${msg.appId}")
private String APPID;
...
}
原因:
经过排查后,因为springioc容器加载bean默认使用无参构造进行初始化,该实现层使用了@AllArgsConstructor注解,而@Value注入一个属性值,其并不会存在于Spring容器,所以报错。
解决方案:
将@RequiredArgsConstructor
注解替换@AllArgsConstructor
注解即可。
@Service
@RequiredArgsConstructor
public class MsgPushServiceImpl {
@Value("${msg.appId}")
private String APPID;
...
}
本文标签: 报错StringlangjavaConfiguration
版权声明:本文标题:解决‘java.lang.String’报错:Consider defining a bean of type ‘java.lang.String‘ in your configuration 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/biancheng/1738333652a2076510.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论