1.idea不能自动导入java.util.List包?
点击File --> Settings 然后点击Editor --> General --> Auto Import,把里面的java.util.List删除即可
2.Description:The bean ‘paginationInterceptor’, defined in com.jwxt.StudentApplication, could not be registered. A bean with that name has already been defined in class path resource [com/jwxt/TeacherApplication.class] and overriding is disabled.
Action:Consider renaming one of the beans or enabling overriding by setting spring.main.allow-bean-definition-overriding=true
问题:原因是bean已经被注册,并且没有开启bean覆盖
解决:在application.yml中的spring节点中配置如下:
main:
allow-bean-definition-overriding: true #开启bean覆盖(bean相同时)

3.
2019/12/5
18:52 Lombok Requires Annotation Processing
Annotation processing seems to be disabled for the project “bos-service-master”. But lombok is on classpath.
For the lombok plugin to function correctly, please enable it under
“Settings > Build > Compiler > Annotation Processors”

3万+

被折叠的 条评论
为什么被折叠?



