1

我是一名新手 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文件都放置为

在此处输入图像描述

我无法思考这个问题

4

2 回答 2

1

如果你想在 spring 中编写一些应用程序并了解它是如何工作的,你可以下载 spring 工具套件并按照本教程进行操作:http: //manueljordan.wordpress.com/2011/12/12/creating-a-spring-web-mvc -project-with-springsource-tool-suite/

于 2013-08-18T16:14:52.227 回答
1

注意 1:如果您使用的是 Linux 系统,您应该使用 org.spring.framework.xxx-Sources jars。

注意 2:如果你使用的是 Windows 系统,你应该使用 org.spring.framework.xxx-Releases jars

希望这会帮助你。

注意你可以参考:Binary release 和 source release 的区别?

于 2015-02-26T09:30:00.303 回答