Eclipse error: 'The import utils cannot be resolved'

Eclipse error: 'The import utils cannot be resolved'

我正在 Eclipse 中开发一个简单的项目。我有一个实体 class。现在我应该实例化 class 并将对象存储在数据库中。我有一些示例项目使用 utils 包中的 JpaUtils 来执行此操作:

import utils.JpaUtils;

这些项目运行没有问题。 但是在我自己的项目中我得到了错误:'The import utils cannot be resolved'.

我检查了构建路径,我的项目中包含与示例项目中相同的库。

通过在 Projects 菜单中将 Utils 项目添加到我自己的项目的构建路径中解决了问题,感谢@KevinHook。