欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error starting ApplicationContext. To display the conditions report re-run your application with 'de

程序员文章站 2022-05-03 15:53:53
...

启动项目报错:

Error starting ApplicationContext. To display the conditions report re-run your application with 'de
在网上看了很多有的说是jar包重复,有的说是Controller包和Application包处于平行位置。还有的说是在

在接口上添加@Mapper注解。

@Mapper
public interface UserMapper {
}

然后我都检查了,然后我出的错不属于这几种情况。后来自己找出了错误原因

我的错误是端口号8080被占用了,改个端口号就行了

server:
  #端口号
  port: 8085
相关标签: java