gpt4 book ai didi

java - Spring:无法导入库

转载 作者:行者123 更新时间:2023-11-29 05:59:16 26 4
gpt4 key购买 nike

我是Spring新手,从here出去学习Spring教程使用 Eclipse。

但是,在 Eclipse 中我无法导入这两个库

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.ClassPathXmlApplicationContext;

我什至从 Spring 站点下载了 Spring 源文件,将其包含在系统库中,将其添加到我的项目以及我项目的 lib 文件夹中,但没有白费。

你能帮我弄清楚问题到底出在哪里吗,请给我推荐一些好的 Spring 教程网站。

谢谢大家

编辑

这里是异常(exception)

Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
ApplicationContext cannot be resolved to a type
ClassPathApplicationContext cannot be resolved to a type

at com.test.App.main(App.java:12)

最佳答案

基于评论:

您的 jars 尚未包含在类路径中。因此,您会遇到编译错误。

  1. 在 Eclipse 中转到项目资源管理器透视图
  2. 右键单击 lib 文件夹 > 构建路径 > 添加到构建路径。

这会将 lib 文件夹中的所有 jar 包含到您的类路径中,并且您不会遇到任何编译错误。

顺便说一句。这些类是 spring-context jar 的一部分,因此请确保它们位于 lib 文件夹中。

关于java - Spring:无法导入库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10779621/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com