eclipsemain直接run报错debug正常
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipsemain直接run报错debug正常相关的知识,希望对你有一定的参考价值。
参考技术A 不正常1、使用命令行进行运行,编译可以使用集成开发环境。这样可以完成标准输出。
2、在程序中重定向标准输出到其他的设备或者方式(例如写到文本文件),这样也可以"比较不方便的"完成该功能。
3、在main函数结束时,添加system.exit(0); 参考技术B eclipsemain直接run报错debug正常
答案是,重新打开Eclipse,debug功能可以正常使用了
SpringBoot报错“To display the auto-configuration report re-run your application with ‘debug‘ enabled.“
异常
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2021-06-13 13:18:55.548 ERROR 79340 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter :
***************************
APPLICATION FAILED TO START
***************************
Description:
Field service in com.demo.springcloud.controller.Controller required a bean of type 'com.demo.springcloud.service.DeptService' that could not be found.
Action:
Consider defining a bean of type 'com.demo.springcloud.service.DeptService' in your configuration.
原因
在控制器类中注入了DeptService类
但是DeptService并没有注册成为Bean,交由Spring容器管理。
解决
在DeptService接口的实现类上添加@Service注解,注册成为Bean。
以上是关于eclipsemain直接run报错debug正常的主要内容,如果未能解决你的问题,请参考以下文章
Spring Cloud ZooKeeper集成Feign的坑3,程序Run模式运行没事,Debug模式下报错
SpringBoot报错“To display the auto-configuration report re-run your application with ‘debug‘ enabled.“
springboot启动报错退出,To display the conditions report re-run your application with 'debug' enabl
Thinkphp3.2.3关于开启DEBUG正常,关闭DEBUG就报错模版无法找到
BeanPostProcessors (for example: not eligible for auto-proxying),报错解决