
报错整理
HRX98
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据大屏项目采坑01 (已解决)
数据大屏项目采坑01 (已解决)2022-03-02 13:12:53.530 ERROR 71824 — [nio-8090-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is ja原创 2022-03-02 13:17:57 · 1870 阅读 · 0 评论 -
sorry redis desktop manager crashed - RDM远程连接失败
修改redis.conf中protected-mode 为 no注释redis.conf文件中的bind在上述文件中设置密码apt install redis-toolsredis-cli shutdown启动redis【带着配置文件】./redis-server …/redis.conf成功!原创 2022-03-02 11:57:25 · 961 阅读 · 0 评论 -
毕设记录01-2022-0301
毕设记录011. redis作用:数据库访问压⼒:为了降低对数据库的访问压⼒,当多个⽤户请求相同的数据时,我们可以将第⼀次从数据库查询到数据进⾏缓存(存储在内存中),以减少对数据库的访问次数⾸⻚数据的加载效率:将⼤量的且不经常改变的数据缓存在内容中,可以⼤幅度提⾼访问速度集群部署下的商品超卖:分布式事务⽤户登录:分布式会话2. 向redis中存储数据不同数据结构的添加操作//1.string//添加数据 set key valuestringRedisTemplate.boundVa原创 2022-03-01 19:58:04 · 415 阅读 · 0 评论 -
在Springboot中使用Dubbo踩坑
在SpringBoot中使用Dubbo踩坑求大神帮忙!!!原创 2022-02-26 17:11:49 · 690 阅读 · 0 评论 -
SpringCloud写一个简单的crud的demo(增加)
利用SpringCloud的一些中间件写一个简单的crud的demo(增加)此处只涉及了用户注册的demo(不包含前端页面)0. 数据库表设计如下:1. 创建一个maven工程my-user-demo创建成功之后,把该工程下的src删除2. 在my-user-demo下创建一个Module2.1 类型为SpringBoot,serverURL为:https://start.aliyun.com2.2 命名为user-info-provider2.3 选择2.4 pom文件如下<原创 2022-02-26 09:57:30 · 682 阅读 · 0 评论 -
Consider defining a bean of type ‘com.qf.user.consumer.feign.api.UserFeignAPI‘ in your configuration
Consider defining a bean of type ‘com.qf.user.consumer.feign.api.UserFeignAPI’ in your configuration…引导类加注解@EnableFeignClients原创 2022-02-25 21:08:05 · 339 阅读 · 0 评论 -
A component required a bean of type ‘com.hao.mall.service.UserService‘ that could not be found.
项目报错A component required a bean of type ‘com.hao.mall.service.UserService’ that could not be found. Action: Consider defining a bean of type ‘com.hao.mall.service.UserService’ in your configuration.原来userServiceImpl上没有标注解@Service,表上注解之后就没问题啦!...原创 2022-02-19 10:56:00 · 636 阅读 · 0 评论 -
写mall项目报错Tests run: 1, Failures: 0, Errors
项目报错:Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 4.323 s <<< FAILURE! - in com.hao.mall.ApiApplicationTests contextLoads Time elapsed: 0.003 s <<< ERROR!我的尝试:并没有作用、、、、、、、、、、、、、、、、大佬解决方案、、、、、、、、、、、、、、、、双击clean–原创 2022-02-19 10:47:13 · 1199 阅读 · 0 评论 -
SpringBoot+mybatis-plus+thymeleaf整合crud的小demo采坑
thymeleaf的标签采坑原创 2022-01-13 19:55:38 · 276 阅读 · 0 评论 -
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request p
浪费了我的午休以及一整个下午、、、、、、、、、、、、、在使用springboot+mybatisplus+thymeleaf完成一个CRUD的过程中,我在查询列表的时候,不采用三层架构的时候,可以将列表查询,但是分层后,一直报错500,报错信息如下2022-01-12 17:38:29.764 ERROR 13896 --- [nio-8002-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet原创 2022-01-12 17:43:57 · 2133 阅读 · 0 评论 -
Ajax实现异步删除表格中的一行
Ajax实现异步删除表格中的一行前端body格代码<body><center> <h1>商品列表页面</h1> <table class="table table-bordered" style="width: 80%" id="myTable"> <thead> <tr> <th>ID</th> &原创 2022-01-10 21:03:44 · 1201 阅读 · 0 评论 -
Springboot mybatis集成时报错:Invalid bound statement (not found): com...DepartmentMapper.save
报错信息:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.qf.java2107.springboot.mapper.DepartmentMapper.save at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) at org.apache.ibatis.原创 2022-01-10 20:31:15 · 316 阅读 · 0 评论 -
SpringBoot项目启动报错Failed to determine a suitable driver class
SpringBoot启动报错Failed to determine a suitable driver class原创 2022-01-10 19:23:53 · 3178 阅读 · 0 评论