随笔分类 - Maven
The server sockets created using the LocalRMIServerSocketFactory only accept connections from client
摘要:编辑所选配置 VM 选项 -Dcom.sun.management.jmxremote.local.only=false https://blog.csdn.net/weixin_44316527/article/details/121865083
阅读全文
摘要:https://blog.csdn.net/weixin_43883917/article/details/121329159 1、查看被占用的端口的进程 netstat -aon|findstr 端口号 2、根据PID找到占用此端口的进程 tasklist|findstr 端口号 3、结束这个进程
阅读全文
摘要:原因:activiti 相关的jar版本和表 act_ge_property 中 schema.version 所存储的版本不一致导致报错的。 解决:查看activiti 相关jar版本,然后修改表中的版本就可以了 https://blog.csdn.net/qq_42277520/article/
阅读全文
摘要:``` maven-resources-production:webapi: java.lang.NegativeArraySizeException 打开项目启动时,发现报这个错误,基于此,我分析了一下,首先原本好好的项目突然这样子,首先查看代码更新的情况,发现代码并没有作任何变化。分析代码jar
阅读全文
摘要:1.上网查询 pom.xml 错误: 找不到或无法加载主类 com.xxx.xxx.xxxApplication //屏蔽掉 <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plug
阅读全文
摘要:IDEA -> 文件 -> 清除缓存重启 IDEA -> 文件 -> 设置 -> 构建、执行、部署 -> 构建工具 -> Maven
阅读全文
摘要:https://blog.csdn.net/weixin_44589991/article/details/115013451
阅读全文
摘要:The user specified as a definer ('root'@'%') does not exist 此种报错主要是针对访问视图文件引起的(没有权限) 在DOS命令窗口输入 cd C:\Program Files\MySQL\MySQL Server 5.7\bin 回车 mysq
阅读全文
摘要:问题:springboot启动时报如下错误 Failed to process import candidates for configuration class […Application] … AutoConfigure cycle detected between TransactionAut
阅读全文
摘要:错误提示: Error creating bean with name 'rabbitConnectionFactory': Singleton bean creation not allowed while singletons of this factory are in destruction
阅读全文
摘要:错误提示: 命令行过长。要为 RunshiCoreApplication 或也为 Spring Boot default 配置 缩短命令行吗 或 Error running 'Application': Command line is too long. Shorten command line f
阅读全文
摘要:该问题为配置文件路径错误,检查配置文件,千万不要给路径+"" mysql5正确形式为 jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
阅读全文
摘要:1.启动报Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registere
阅读全文
摘要:改一下mysql驱动的版本号 <version>5.1.46</version> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <v
阅读全文