异常日志: -- ::, [http-nio--exec-] DEBUG [java.sql.Connection] - ooo Connection Opened -- ::, [http-nio--exec-] DEBUG [java.sql.PreparedStatement] - ==> Executing: insert into client_config ( appid, uid, config, created_time, creater, client_type, status…
我们通过ideal编辑器编辑 springboot时候,出现这个错误: com.mongodb.MongoSecurityException: Exception authenticating MongoCredential 这个问题说明一件事儿,我们连接数据库没有连接上,为什么连接不上呢,比如我们用mongoDB下面的一个database叫做xiaomu,但是我们的用户名密码是一个database叫做admin下的用户,这样就连不上了.因此,我们在database为xiaomu下面建立一个用户…
1.问题 springboot启动报错 "D:\Program Files\Java\jdk-11\bin\java.exe" -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.applicatio…
新建了一个springboot项目报一下错误: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class 原因是加入了mybatis依赖而没有指定数据库url属性,解决方式: 1.去除mybatis依赖,即去除 <depen…
运行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…
SpringBoot启动报错如下 Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2019-05-06 21:27:18.275 ERROR 10968 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** AP…
问题:nginx反向代理部署springboot项目报404无法加载静态资源(css,js,jpg,png...) springboot默认启动端口为8080,如果需要通过域名(不加端口号)直接访问springboot服务就需要nginx配置反向代理到8080端口 nginx配置host主机的过程就不在这讲了,重点解决反向代理静态资源无法访问 nginx反向代理配置 server { listen 80; #listen [::]:80; server_name wms.shiyayun.cn;…
SpringBoot启动报错 ***************************APPLICATION FAILED TO START*************************** Description: The bean 'XXX', defined in class path resource [com/test/cms/XXX.class], could not be registered. A bean with that name has already been def…
springboot启动报错 Failed to scan *****/derbyLocale_ja_JP.jar from classloader hierarchy   这两天自己在玩虚拟机,想把线上的平台复制一份到虚拟机上,jdk,tomcat服务,防火墙端口都搞好了,准备把springboot jar包放上去直接跑,可是放上去启动服务老是报错,报springboot启动报错 Failed to scan *****/derbyLocale_ja_JP.jar from classload…
最近在用springboot构建项目,控制台报错:Handler dispatch failed; nested exception is java.lang.AbstractMethodError,看了下代码编译,bean依赖,jar包版本,网上找了好多资料,依然没发现问题. 最后终于解决. 原因:由于target 文件夹之前生成了 jar包,新启动时springBoot内置Tomcat加载时存有之前的代码缓存,导致 jar包冲突. 解决方案:删掉 target  下边所有的子文件夹,文件.…