spring和flex集成

   最近的项目打算采用flex来做展现,只是小的范围的,所以,要在现有的项目中加入flex。

 

   springsource出了一个专门用来集成flex的项目spring blazeds Integration

   地址:http://www.springsource.org/spring-flex

   其中有打好包的例子

   地址:http://coenraets.org/blog/2009/01/new-springblazeds-integration-test-drive/

 

 

   我要说的是,我遇到的两个问题。

   1.在编译flex时,找不到定义好的remote对象

         这个要在编译中添加services参数

 

-services "{webRoot}\WEB-INF\flex\services-config.xml" -locale en_US
 

    2.spring mvc出现的问题

          no Adapter ......异常

          在spring的配置文件中添加

 

	<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"/>
 

你可能感兴趣的:(spring,Web,bean,mvc,Flex)