spring boot启动报错
Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'esPublicController': Unsatisfied dependency expressed through field 'getCuTicker'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'io.dq.scouta.es.esdata.GetCuTicker' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
2018-08-28 10:24:00.400 WARN  org.apache.catalina.loader.WebappClassLoaderBase Line:179 - The web application [ROOT] appears to have started a thread named [Abandoned connection cleanup thread] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 java.lang.Object.wait(Native Method)
 java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:143)
 com.mysql.jdbc.AbandonedConnectionCleanupThread.run(AbandonedConnectionCleanupThread.java:43)
2018-08-28 10:24:00.469 INFO  org.springframework.boot.autoconfigure.logging.AutoConfigurationReportLoggingInitializer Line:101 -
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2018-08-28 10:24:00.846 ERROR org.springframework.boot.diagnostics.LoggingFailureAnalysisReporter Line:42  -
***************************
APPLICATION FAILED TO START
***************************
@Service("")
spring boot启动报错的更多相关文章
- Spring boot 启动报错 Failed to auto-configure a DataSource
		1.Spring boot 启动报错 Failed to auto-configure a DataSource 参考资料https://blog.csdn.net/liuyinfei_java/ar ... 
- spring Boot启动报错Initialization of bean failed; nested exception is java.lang.NoSuchMethodError: org.springframework.core.annotation.AnnotatedElementUtils.getAnnotationAttributes
		spring boot 启动报错如下 org.springframework.context.ApplicationContextException: Unable to start web serv ... 
- 解决spring boot启动报错java.lang.NoClassDefFoundError: ch/qos/logback/classic/Level
		解决spring boot启动报错java.lang.NoClassDefFoundError: ch/qos/logback/classic/Level 学习了:https://blog.csdn. ... 
- 【原创】大叔经验分享(67)spring boot启动报错
		spring boot 启动报错: Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback Logg ... 
- spring boot 启动报错(spring-boot-devtools热部署后):The elements [spring.resources.cache-period] were left unbound. Update your application's configuration
		详细错误代码: *************************** APPLICATION FAILED TO START *************************** Descript ... 
- 新建Spring boot 启动报错 Failed to auto-configure a DataSource
		今天学习springboot,使用idea创建项目.在选择组件时添加了mysq 然后在第一次启动的时候启动报错,错误信息如下: ***************************APPLICATI ... 
- Spring Boot 启动报错 Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 37
		使用命令 java -jar springBoot.jar 启动项目,结果报错如下: Exception at java.lang.String.substring(String.java:) at ... 
- Spring boot 启动报错:com.mongodb.MongoSocketOpenException: Exception opening socket
		详细错误信息: com.mongodb.MongoSocketOpenException: Exception opening socket at com.mongodb.connection.Soc ... 
- spring boot启动报错Error starting ApplicationContext(未能配置数据源)
		主要错误:Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource c ... 
- idea 2019 1 spring boot 启动报错 An incompatible version [1.2.12] of the APR based Apache Tomcat Native library is installed, while Tomcat requires version [1.2.14]
		1.构建一个简单springboot工程,日志打印报错内容如下: 15:38:28.673 [main] DEBUG org.springframework.boot.devtools.setting ... 
随机推荐
- netty入门demo(一)
			目录 前言 正文 代码部分 服务端 客服端 测试结果一: 解决粘包,拆包的问题 总结 前言 最近做一个项目: 大概需求: 多个温度传感器不断向java服务发送温度数据,该传感器采用socket发送数据 ... 
- 使用JSDoc自动生成代码文档
			译者按: 代码要有规范的注释,遵从jsDoc规则来注释可以生成有用的文档. 原文: Generate docs and host it with JSDoc and GitHub Pages 译者: ... 
- Javascript 跨域知识详细介绍
			JS跨域知识总结: 在“跨域”一词经常性地出现以前,我们其实已经频繁地使用它了.如在A网站的img,src指向B网站的某一图片地址,毫无疑问,这在通常情况下都是能正常显示的(且不论防盗链技术):同样, ... 
- vue2 切换路由时 页面滚动到顶部 用游览器返回时 记住上页的位置
			官方用例:https://router.vuejs.org/zh-cn/advanced/scroll-behavior.html import Vue from 'vue' import Route ... 
- Django之django模型层一单表操作
			一 ORM简介 MVC或者MVC框架中包括一个重要的部分,就是ORM,它实现了数据模型与数据库的解耦,即数据模型的设计不需要依赖于特定的数据库,通过简单的配置就可以轻松更换数据库,这极大的减轻了开发人 ... 
- Ubuntu、deepin 安装 mysql
			在 Ubuntu 和 deepin 安装 mysql 是很简单的,只需要几条简单的命令即可 1. sudo apt-get install mysql-server 2. sudo apt-get ... 
- Space Time Varying Color Palette
			PDF Space Time Varying Color Palettes from Bo Zhou 
- coTurn测试程序之 turnutils_uclient
			接着对使用coTurn搭建的STUN/TURN服务使用turnutils_uclient程序测试其TURN服务是否正常. 直接连接服务测试服务是否正常.为保证测试使用的服务是TURN服务,在TURN服 ... 
- openstack Ocata版本 python
			from keystoneauth1.identity import v3 from keystoneauth1 import session from novaclient import clien ... 
- Alwayson查询主副本不同的JOB,Linkserver,Login
			DECLARE @SQL AS VARCHAR(5000), @Primary AS VARCHAR(50), @Secondy AS VARCHAR(50); SELECT @Primary='AA ... 
