Spring 3 问题——ModelAndView 和 Controller 未得到解决
我正在尝试学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-sources.jar
通常只包含原始的 .java 源文件,而不是编译后的 .class 文件。找到名称中不带-sources
的同一 jar 的版本,并将其添加到您的类路径中。-sources.jar
s 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.您确定该罐子中有您正在寻找的课程吗?看一下这里 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.