是否可以在 django 项目中使用 Enterprise Java Beans?
我已经看到可以在 GlassFish 应用程序服务器上运行 django Web 框架。是否也可以在基于 Jython 运行的 django 项目中使用简单的 Enterprise Java Bean?我的想法是为前端创建一个 django 网站,在后端创建一个 Java EE 网站(用于管理数据库访问等)。有人有这方面的经验吗?
I've seen that it is possible to run the django web framework on a GlassFish application server. Is it also possible to use a simple Enterprise Java Bean in a django project which runs on the basis of Jython? My idea is to have a django website for the frontend and Java EE in the backend (to manage the database access, etc.). Does anyone have experience with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个可能更简单的变体是使用 REST 或可能的 SOAP 公开 EJB 功能来解决 jython 和 java 之间的接口问题,而不是直接进行调用。
A possibly easier variant would be to expose the EJB functionality using REST or possibly SOAP to get around interface problems between jython and java rather than do the call directly.