java
文章平均质量分 67
YJYD
十多年的码农,什么问题没见过,一切都是小问题。
展开
-
springMVC项目中报 org.springframework.web.context.ContextLoader - Context initialization failed java.lan
在Spring MVC项目开发中遇到错误"org.springframework.web.context.ContextLoader - Context initialization failed java.lang.NoClassDefFoundError: Lcom/dhcc/dao/BookShopDao"。这个错误是由于缺少类造成的,这次将分享此问题的解决方法原创 2023-07-11 14:24:05 · 3487 阅读 · 0 评论 -
springcloud项目中访问nacos接口报错:There was an unexpected error type=Service Unavailable, status=503
springcloud项目中访问nacos接口报错:There was an unexpected error type=Service Unavailable, status=503原创 2023-07-10 12:37:23 · 1827 阅读 · 0 评论 -
在spring cloud 使用 Nacos + openfeign出现错误No Feign Client for loadBalancing defined. Did you forget to
在spring boot项目中使用Nacos + openfeign出现错误“No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalancer”。原创 2023-07-09 16:56:12 · 1122 阅读 · 0 评论 -
SpringCloud 项目报 IllegalStateException: PathVariable annotation was empty on param 0怎么解决
SpringCloud 项目报 IllegalStateException: PathVariable annotation was empty on param 0怎么解决原创 2023-07-08 13:00:27 · 651 阅读 · 0 评论 -
使用mybatis时,遇到nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiati
使用MyBatis时,遇到了一个错误:nested exception is org.apache.ibatis.reflection.ReflectionException: Error instantiating class xxx。下面我向大家介绍这个问题是怎么解决的。原创 2023-07-07 11:36:05 · 3649 阅读 · 0 评论 -
使用mybatis-generator:generate自动生成Dao和Mapper文件时报异常: Failed to execute goal org.mybatis.generator:mybat
在使用mybatis-generator:generate生成Dao和Mapper文件时报出异常: Failed to execute goal org.mybatis.generator:mybatis-generator-maven-plugin:1.3.2:generate (default-cli) on project XXX: resource datasource.properties does not exist,经过一番分析,现将解决办法分享给大家。原创 2023-07-06 10:26:55 · 1304 阅读 · 1 评论 -
springboot项目报Could not resolve view with name ‘xxxxxxxxxxx‘ in servlet with name ‘dispatcherServlet‘
springboot项目报Could not resolve view with name 'xxxxxxxxxxx' in servlet with name 'dispatcherServlet'原创 2023-07-05 09:48:17 · 7804 阅读 · 1 评论 -
将项目部署到服务器上时报java.security.InvalidKeyException: Illegal key size
报java.security.InvalidKeyException: Illegal key size将你下载的文件解压缩得到的两个JAR文件local_policy.jar和US_export_policy.jar复制到这个文件夹中。原创 2023-07-04 13:09:53 · 352 阅读 · 0 评论 -
最近在使用generator插件生成mybatis代码,遇到Could not autowire. No beans of ‘xxx‘ type found.异常
最近在开发中遇到了一个有趣的问题,我正在使用"generator"插件来生成MyBatis代码。然而,在使用过程中,我突然遇到了一个异常:“Could not autowire. No beans of ‘xxx’ type found.”原创 2023-07-02 13:11:55 · 1625 阅读 · 1 评论 -
java.lang.IllegalStateException: Failed to load ApplicationContext报错怎么办
近期在进行项目开发时,我遇到了一个报错:java.lang.IllegalStateException: Failed to load ApplicationContext 。原创 2023-06-26 18:34:50 · 18116 阅读 · 1 评论 -
org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request
前段时间在开发Spring Boot项目时,遇到了一个很烦人的错误,提示为"org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is java.io.IOException: The temporary upload location"。原创 2023-06-24 14:28:20 · 10020 阅读 · 0 评论 -
SpringBoot项目启动报错Failed to bind properties under ‘spring.servlet.multipart.max-request-size‘ to org
SpringBoot项目启动报错Failed to bind properties under 'spring.servlet.multipart.max-request-size' to org原创 2023-06-23 09:43:49 · 3616 阅读 · 1 评论 -
cannot find implementation for xx.xxDatabase. xxDatabase_Impl在Android中使用Room框架访问数据库报错的解决办法
cannot find implementation for xx.xxDatabase. xxDatabase_Impl在Android中使用Room框架访问数据库报错的解决办法原创 2023-06-21 14:35:21 · 1863 阅读 · 0 评论 -
聊一聊Redis解决缓存雪崩、穿透、击穿、脑裂这些问题的经验
聊一聊Redis解决缓存雪崩、穿透、击穿、脑裂这些问题的经验原创 2023-06-18 19:52:17 · 283 阅读 · 1 评论 -
Spring的Quartz定时器同一时刻重复执行二次的问题解决
Spring的Quartz定时器同一时刻重复执行二次的问题解决 //需要启用Quertz。1.将quartz.xml lazy-init="true"值改成 true;logger.error("启动初始化异常:",e);//启用Quertz。加在实例化spring容器之后;原创 2014-11-24 11:05:38 · 3422 阅读 · 0 评论