一,首先确认数据库的连接信息是否都正确,数据库能否正常连接(例如用客户端能连接上):二,确认配置文件中datasource.type配置是否正确,此处我们公司用的阿里的是com.alibaba.druid.pool.DruidDataSource: 一般Spring Boot默认的数据源是org.apache.tomcat.jdbc.pool.DataSource 三, 如果此项配置没有问题,请检查服务器上该项目的服务配置是否正确,如下: Frms-test.conf文件的此处应该改为dev:…
运行springboot项目报错: *************************** APPLICATION FAILED TO START *************************** Description: Field userMapper in com.whohim.springboot.service.impl.UserServiceImpl required a bean of type 'com.whohim.springboot.dao.UserMapper' t…
由于百度出来的看不明白,于是我就在群里问,吴善如经理说:你这个问题我上次给李宽看过,用端口连,把instance去掉 然后我去掉之后 项目过程能够成功运行了,原来是这样…
MySQL8.0报错Can't connect to MySQL server on 'localhost' (10061)的解决办法 事情的起因     今天课堂上要展示小组项目,需要用一个软件叫WPS-Interactive来投屏,我打开后发现不好使.     所以我就卸载了准备重新下载一个.     在卸载的时候360管家提醒:"注册表中有残留文件是否清除",我的手快于大脑,"开心的"点了确定.     然后我的IDEA就连不上数据库了.然鹅我们组马上就要展示…
搭建elsticsearch集群 报错with the same id but is a different node instance解决办法 学习了:https://blog.csdn.net/qq_24879495/article/details/77718032 删除data文件夹,或者改个名字:…
启动网卡报错(Failed to start LSB: Bring up/down networking )解决办法总结 原文:http://blog.51cto.com/11863547/1905929            http://blog.csdn.net/debimeng/article/details/74296152?utm_source=itdadao&utm_medium=referral  Failed to start LSB: Bring up/down networ…
有一次启动springboot项目的时候,报了一个非常奇怪的错误,说是找不到servletContext,springboot不是自带tomcat的吗? 在网上找了好久,说是用以下方式解决. 解决方式: 将tomcat的lib包下的servlet-api.jar 拷贝到java的jre下的lib里即可.(需要在idea中重新导入一下jdk) mac 电脑下寻找java安装目录方式:在终端下执行   /usr/libexec/java_home -V  但是查看同事的java的jre包下并没有这个…
使用eclipse新建maven项目,按下图所示选择后,报错 报错截图 报错详细信息 Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart:1.1 from any of the configured repositories.Could not resolve artifact org.apache.maven.archetypes:maven-archetype-quickstar…
在一个tomcat服务器下部署了多个采用阿里druid作为数据连接池,结果启动报错.原因是不能在一个tomcat服务器下不能直接部署多个druid作为数据连接池的项目,需要配置. 解决办法: 在springboot中添加配置项: spring.jmx.default-domain= appName…
1.下载http://repo1.maven.org/maven2/archetype-catalog.xml 通过eclipse下载和网页下载我这里都比较慢,最后用的迅雷下载 2.将本地xml文件配置到eclipse中 依次打开windows--preferences--maven--archetypes--add local catalog 3.选择下载的xml文件,description随便填写,例如maven_catalog 4.创建项目,这一步时,catalog选择自己导入的,里面东西…