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

APPLICATION_JSON cannot be resolved or is not a field

程序员文章站 2022-04-27 23:43:28
...

今天从网上生成了一个springBoot项目的demo,最简单的那种,但是还是出错了。

 

报错信息如下:

APPLICATION_JSON cannot be resolved or is not a field

APPLICATION_JSON cannot be resolved or is not a field

导入的包是:

import java.awt.PageAttributes.MediaType;

就是因为这个包导致的报错。

也就是说在最开会的时候myeclipse给咱自动导包的时候整错了。

修改为下面这个jar包就好了:

import org.springframework.http.MediaType;

 

思路整理:

一般遇到这种问题的时候,第一先找到这个错误方法的引入包,然后删除掉,重新导包看一下都有哪些包,都试一下。