集成 java 和 apex (salesforce)

发布于 2024-09-12 23:25:05 字数 112 浏览 7 评论 0原文

我是一名销售新手,我需要将 java 业务逻辑与 apex 页面集成。 不使用 vwmforce 是否可以做到这一点?请注意,我还必须包含我自己的库和第三方库。 有相关教程/资源吗?

提前致谢

I'm a salesforce newbie and I need to integrate java business logic with apex pages.
Is it possibile to do it without using vwmforce? Note that I have to include my own and third party libraries as well.
Is there any tutorial/resource about that?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难如初 2024-09-19 23:25:05

您可以从 Salesforce 对单独的 Java 代码执行标注(只要它公开为 Web 服务或至少可以接受 HTTP 消息)。

  1. 阅读Force.com 平台上的集成,有很多可能性和示例。
  2. API 文档中大多数时候都有 Java 代码列出的代码段,例如用于创建新记录 (向下滚动到页面中间,“#”锚点似乎已损坏,因此我无法给出直接链接)。

一般来说,您可以“推送”(在发生某事时从 Salesforce 发送通知,同步或不同步)和“拉取”数据(定期向您的 Java 应用程序请求更改或在您这边发生某事时发送插入等)。

但如果您想在 Salesforce 服务器上而不是在您自己的计算机上运行 Java,那么 vmforce 可能是唯一的选择。我还没试过这个。

最后,在 Apex、Visualforce 等下,有 Oracle 数据库和 Java(带有 JSP),但我怀疑他们会授予访问权限;)

You could perform callouts from Salesforce to your separate Java code (as long as it's exposed as webservice or at least can accept HTTP message).

  1. Read about Integration on the Force.com platform, there are many possibilities and examples.
  2. In the API documentation most of the time there are Java code snippets listed, for example for creation of new records (scroll down to the middle of the page, "#" anchors seem to be brokes so I cannot give a direct link).

Generally you can both "push" (send from Salesforce notifications when something happens, synchronously or not) and "pull" data (periodically ask from your Java application for changes or send INSERTS etc. whenever something happens on your side).

But if you want to run your Java on Salesforce server and not on your own machine - tough, vmforce might be the only option. I haven't tried this one yet.

In the end under the Apex, Visualforce etc. there are Oracle databases and Java (with JSP), but I doubt they'll grant access to it ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文