IDEA使用过程中的错误集合

一、pom.xml中出现的错误

1、在pom.xml中此处出现,但是能正常运行,红色解决方法:

IDEA使用过程中的错误集合_第1张图片

查看父级工程:parent标签中的依赖配置的jar包

2.5.0

IDEA使用过程中的错误集合_第2张图片

在build标签中添加parent标签中的依赖配置的jar包,修改后如下:

        
            
                org.springframework.boot
                spring-boot-maven-plugin
                2.5.0
            
        
    

2、在resources中的错误

 

IDEA使用过程中的错误集合_第3张图片

 

IDEA使用过程中的错误集合_第4张图片

 

IDEA使用过程中的错误集合_第5张图片

解决方法一

IDEA使用过程中的错误集合_第6张图片

改成这样就解决了

IDEA使用过程中的错误集合_第7张图片

解决方法二:

IDEA使用过程中的错误集合_第8张图片

 

3、错误

IDEA使用过程中的错误集合_第9张图片

解决方案:

IDEA使用过程中的错误集合_第10张图片

 

3、在pojo中的错误

1. There is no getter for property named 'user' in 'class pojo.User'

查看

IDEA使用过程中的错误集合_第11张图片

有的时候并不是没有getter方法,而是要检查你的User类中的属性名是否和要映射的数据库表的名字一致

我的数据库中用户表名字叫user所以在User类中的属性也要叫user,我开始叫newuser这是改正过后的,这个错误人有时候容易忽略

 

 

 

 

 

 

 

 

 

 

二、java下的错误

 

1、idea工具遇到java图标变成J符号

修改方案:

IDEA使用过程中的错误集合_第12张图片

 

 

2、404错误

IDEA使用过程中的错误集合_第13张图片

       解决方法:

       IDEA目录结构的问题,Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包 。而我的controller则放在了最外层的包里面。导致找不到页面。

IDEA使用过程中的错误集合_第14张图片

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(java,java,idae,maven,spring,spring,boot)