Spring 3 问题——ModelAndView 和 Controller 未得到解决

发布于 2024-11-08 21:21:27 字数 335 浏览 0 评论 0原文

我正在尝试学习 Spring 3。我有一堂课,我正在尝试执行这两个导入:

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;

Eclipse 告诉我这两个导入都无法解析,但我有 org.spring Framework.web.servlet-sources-3.1.0.M1.jar 在我的类路径中,并且通过通过 jar -tf 运行它,我已经验证了一个事实,上述两个类都在这个 jar 中。谁能向我解释一下问题是什么?

I'm trying to learn Spring 3. I have a class where I'm trying to do these two imports:

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;

Eclipse is telling me that neither import can be resolved, but I have org.spring
framework.web.servlet-sources-3.1.0.M1.jar in my classpath, and I have verified for a fact, by way of running it through jar -tf, that both of the above classes are in this jar. Can anyone explain to me what the problem is?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

百合的盛世恋 2024-11-15 21:21:27

-sources.jar 通常只包含原始的 .java 源文件,而不是编译后的 .class 文件。找到名称中不带 -sources 的同一 jar 的版本,并将其添加到您的类路径中。

-sources.jars usually just contain the original .java source files, not the compiled .class files. Find the version of the same jar without -sources in it's name and add that to your classpath.

挽手叙旧 2024-11-15 21:21:27

您确定该罐子中有您正在寻找的课程吗?看一下这里 http://viralpatel.net/blogs/2010/06/spring-3-mvc-create-hello-world-application-spring-3-mvc.html。我感觉你需要不同的罐子。

Are you sure that jar has the classes you're looking for? Take a look here http://viralpatel.net/blogs/2010/06/spring-3-mvc-create-hello-world-application-spring-3-mvc.html. I have a feeling you need different jars.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文