项目日记
leona的碎碎念
这个作者很懒,什么都没留下…
展开
-
windows下kafka启动报错,找不到或无法加载主类 Files\Java\jdk1.8.0_144\lib\dt.jar;C:\Program
问题原因java安装路径有空格,导致无法识别一、查看环境变量配置是否正确.;%Java_Home%\bin;%Java_Home%\lib\dt.jar;%Java_Home%\lib\tools.jar(一般不是此问题)二、修改kafka文件1. 找到**\kafka_2.12-2.3.0\bin\windows2. 找到kafka-run-class.bat3. 找到set COMMAND=%JAVA% %KAFKA_HEAP_OPTS% %KAFKA_JVM_PE原创 2022-05-19 17:21:21 · 1283 阅读 · 0 评论 -
利用thymeleaf模板时跳转页面报40
路径写的都是对的仔细一看发现浏览器路径是localhost:8080/index,而应该localhost:8080/community/index,因为加了项目访问路径所以发现是在模板中忘记加路径动态解析@符号加了就解决了<a id="target" th:href="@{${target}}" class="text-primary">链接</a>...原创 2022-04-23 23:06:46 · 244 阅读 · 0 评论 -
org.springframework.mail.MailAuthenticationException: Authentication failed;
一、错误使用java发送邮件时出现以上错误二、解决方案在配置文件中密码设为了邮箱登录密码改为开通pop3/smtp服务时所给的授权码即成功原创 2022-04-21 16:50:49 · 319 阅读 · 0 评论 -
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.
一、问题mybatis报错:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'limit' not found. Available parameters are [arg2, offset, param3, userId, param1, param2]二、解决方法对于mybatis的接口类中的方法当方原创 2022-04-17 19:25:45 · 15273 阅读 · 1 评论 -
mybatis报错:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.
一、异常描述mybatis报错:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com.nowcoder.community.dao.UserMapper.selectByName'.It's原创 2022-04-16 21:50:52 · 2514 阅读 · 1 评论