Spring MVC 和 Flex 通过 BlazeDS 集成?

发布于 2024-08-02 03:05:31 字数 523 浏览 4 评论 0原文

这是将现有 spring-MVC-Project 与 flex 集成的最佳方式。 我正在使用带有注释的 Spring-2.5 lib。

例如我的列表控制器:

package xxx.xxx.controller;

@Controller
public class ListController {

 @Autowired
 private ColorHome colorHome;

@RequestMapping("/admin/colors.do")
public ModelMap colorsHandler() {
    Collection<Object> colors = this.colorHome
            .findColors();
    return new ModelMap(colors);
}

我还有一个显示颜色的colors.jsp。 现在我想将 flex 集成为 UI 层。 我只需要将 Spring-View 与上面显示的 RequestMappings 集成。

Which is the best way to integrate existent spring-MVC-Project with flex. I'am using Spring-2.5 lib with annotations.

e.g my list controller:

package xxx.xxx.controller;

@Controller
public class ListController {

 @Autowired
 private ColorHome colorHome;

@RequestMapping("/admin/colors.do")
public ModelMap colorsHandler() {
    Collection<Object> colors = this.colorHome
            .findColors();
    return new ModelMap(colors);
}

I have also a colors.jsp which displays the colors. Now I would like to integrate flex as an UI-Layer. I only need to integrate the Spring-View with shown RequestMappings above.

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

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

发布评论

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

评论(2

客…行舟 2024-08-09 03:05:31

去获取 BlazeDS。 使用 WAR 文件安装它。
您还需要 Spring 的 Flex jar。

在您的 web.xml 文件中,添加以下内容:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/flexContext.xml
    </param-value>
</context-param>
<servlet>
    <servlet-name>flex</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>flex</servlet-name>
    <url-pattern>/messagebroker/*</url-pattern>
</servlet-mapping>

创建一个 flex-servlet.xml 文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:flex="http://www.springframework.org/schema/flex"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
</beans>

创建一个 flexContext.xml 文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:flex="http://www.springframework.org/schema/flex"
    ...
">
    <flex:message-broker />

    <flex:remoting-destination destination-id="flexService" ref="beanFromApplicationContext" />

</beans>

这应该足以让您获得远程端点。

在 Flex 中,创建一个 RemoteObject 并为其指定“flexService”目标或您在其上设置的目标 ID 的任何内容。

Go get BlazeDS. Install it using the WAR file.
You'll also need the flex jar from Spring.

In your web.xml file, add this:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
        /WEB-INF/flexContext.xml
    </param-value>
</context-param>
<servlet>
    <servlet-name>flex</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>flex</servlet-name>
    <url-pattern>/messagebroker/*</url-pattern>
</servlet-mapping>

Create a flex-servlet.xml file.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:flex="http://www.springframework.org/schema/flex"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
</beans>

Create a flexContext.xml file.

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:flex="http://www.springframework.org/schema/flex"
    ...
">
    <flex:message-broker />

    <flex:remoting-destination destination-id="flexService" ref="beanFromApplicationContext" />

</beans>

This should be enough to get you the remoting endpoints.

In Flex, create a remoteObject and give it a destination of "flexService" or whatever you set the destination-id on the to.

原来是傀儡 2024-08-09 03:05:31

Spring有一个与Flex、BlazeDS和Java集成的项目。

这可能对你有帮助。 Spring n Flex 集成

Spring has a project for its integration with Flex,BlazeDS and Java.

This might help you. Spring n Flex integration

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