我是一名新手 springs 程序员,我刚刚完成了 springs mvc 3.0 概念的阅读。我尝试在 springs 中编写我的第一个代码,但我在删除编译时错误时遇到了问题。这些错误显示在这些行上
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.support.SessionStatus;
显示的错误是
The import org.springframework.beans.factory.annotation.Autowired cannot be resolved
对于import
我认为合适的其他“我的文件”位置也是如此
所有的jar文件都放置为
我无法思考这个问题