导入包javaEE
我有一个maven企业应用项目。如何将包(在 EJB 项目中)中包含的 java 类导入到 Web 项目中的 java 类?
我只是尝试一下:
import com.mycompany.persistence.UserEntity;
但我有这样的消息:
包不存在
是不是依赖有问题? 谢谢你的帮助
I have a maven entreprise application project. How can I import a java Class included in a package (in EJB project) to a java Class that is in the Web project?
I simply try this:
import com.mycompany.persistence.UserEntity;
but I have this message :
package does not exist
Is there a problem with dependencies?
thanks for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于问题中提供的信息有限,看来 ejb 项目未指定为 Web 项目中的依赖项。添加这个项目作为依赖项,它应该可以工作。
With the limited information provided in the question, it appears that the ejb project is not specified as a dependency in the web project. Add this project as a dependency and it should work.