Spring MVC 和 Flex 通过 BlazeDS 集成?
这是将现有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
去获取 BlazeDS。 使用 WAR 文件安装它。
您还需要 Spring 的 Flex jar。
在您的 web.xml 文件中,添加以下内容:
创建一个 flex-servlet.xml 文件。
创建一个 flexContext.xml 文件。
这应该足以让您获得远程端点。
在 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:
Create a flex-servlet.xml file.
Create a flexContext.xml file.
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.
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