bug
遇到的一些bug
Lucky me.
简单的事重复做,重复的事情用心做,用心的事情坚持做!
展开
-
创建新模块的时候发现已经存在 springcloud idea
将该文件下的红框框到的给注释删掉即可。然后刷新maven会显示找不到。将这块给删掉刷新maven即可。创建新模块的时候发现已经存在。原创 2024-03-30 18:52:25 · 547 阅读 · 1 评论 -
git报错Another git process seems to be running in this repository, e.g. an editor opened by ‘git commi
Another git process seems to be running in this repository, e.g.an editor opened by 'git commit'. Please make sure all processesare terminated then try again. If it still fails, a git processmay have crashed in this repository earlier:原创 2022-11-25 15:44:43 · 340 阅读 · 0 评论 -
springboot项目的@mapping等一些web的注解爆红
今天犯了个好傻逼的错误,新建一个项目直接开始写,在选择依赖的时候没有选择web的依赖,然后进去使用web的依赖爆红,害细心一点吧,直接在pom.xml文件中引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.5.5<原创 2021-10-13 10:22:36 · 2339 阅读 · 0 评论 -
[THYMELEAF][http-nio-8080-exec-X] Exception processing template “edit“: An e
[THYMELEAF][http-nio-8080-exec-3] Exception processing template “edit”: An e遇见了这个问题上网上找教程,方法很多但是对我无效果,还是一直报错500,然受我又仔细排查了Thymeleaf 的用法,有无错误,始终没有错误,就在最沮丧地的时候看来的controller 的代码,很低级的一个错误,上获取ID值,下面却没有用**@PathVariable** 映射id @GetMapping("/edit/{id}") p原创 2021-06-22 15:57:11 · 1472 阅读 · 0 评论 -
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Circular
2021-05-25 13:08:29.219 ERROR 17508 — [nio-8081-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Circular view path [mybatis]: would dispatch back to the current h原创 2021-05-25 13:22:53 · 17342 阅读 · 3 评论 -
java.lang.NoClassDefFoundError: org/springframework/core/metrics/ApplicationStartup
java.lang.NoClassDefFoundError: org/springframework/core/metrics/ApplicationStartup报错原因:没有在pom.xml配置文件中少引入了一个依赖:spring-core<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</art原创 2021-05-23 14:24:22 · 17987 阅读 · 3 评论