春天 +弹性+ BlazeD配置

发布于 2024-08-22 10:06:15 字数 493 浏览 6 评论 0原文

Flex 如何知道调用 Spring 框架中的特定服务。

我在Flex方面给出:

<mx:remoteObject id="myObj" destination="mySpringservice"/>

和remote-config.xml文件:

<destination id="mySpringservice">
    <properties>
        <factory>spring</factory>
        <source>mySpring</source>
    </properties>
</destination>

以及服务器如何知道特定的flex远程对象调用特定的spring服务。 service-config.xml 文件中需要配置什么吗?

谢谢, 拉维

How Flex knows to call the particular service in Spring framework.

I give in Flex side:

<mx:remoteObject id="myObj" destination="mySpringservice"/>

And remote-config.xml file:

<destination id="mySpringservice">
    <properties>
        <factory>spring</factory>
        <source>mySpring</source>
    </properties>
</destination>

And how server knows to the particular flex remote object calls to particular spring service. any thing need to configure in service-config.xml file?

Thanks,
Ravi

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

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

发布评论

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

评论(1

滥情空心 2024-08-29 10:06:15

我不知道你的配置,但如果你使用 Spring BlazeDS Integration 你就不会需要在远程配置中配置目的地。相反,您可以将 spring bean 设置为 spring 配置文件中的目标,如下所示

<bean id="myService" class="package.MyService">
    ...
    <flex:remoting-destination />
</bean>

I' don't know about your config but if you use Spring BlazeDS Integration you don't need to configure destinations in the remote-config. Instead of that you can make a spring bean to be a destination in the spring config file like this

<bean id="myService" class="package.MyService">
    ...
    <flex:remoting-destination />
</bean>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文