Flex 初学1
IDE: Flex Builder
服务器 LCDS
1, 新建一个Flex工程, 我命名为Test, 则工程自动建立一个Test.mxml, 并且将该文件作为该工程的默认主页
我们在Test.mxml里面拖一个控件 textarea
2, 新建一个JAVA工程, 命名为TestJava, 编写一个getHi()方法, 返回一个string
3, 到 \lcds\tomcat\webapps 路径下, 复制lcds目录, 更名为Test (复用里面的所有文件)
进入Test文件夹, 新建 Test-debug文件夹, 用于flex编译
4, Test工程--properties--Flex Server, 将里面相关的路径改成Test, 并且点击validate configuration
5, 将TestJava的JDK版本改成1.5(据说1.6有问题)
TestJava--properties --JAVA build path -- 修改default output folder:
点击browse... -- create new folder -- advanced -- 勾选link to folder in the file system -- 选择Test的web编译路径 : \lcds\tomcat\webapps\Test\WEB-INF\classes
6, 编辑lcds\tomcat\webapps\Test\WEB-INF\flex\remoting-config.xml
在service节点中, 最后增加:
<destination id="Test"> <properties> <source>Test</source> </properties> </destination>
<?xml version="1.0" encoding="utf-8"?><s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init()"><fx:Declarations><!-- Place non-visual elements (e.g., services, value objects) here --><mx:RemoteObject destination="Test" id="MyTest" ><mx:method name="getHi" result="getHandler(event)"/></mx:RemoteObject></fx:Declarations><fx:Script><![CDATA[import mx.rpc.events.ResultEvent;[Bindable]private var str:String = new String();private function init():void{MyTest.getHi();}private function getHandler(event:ResultEvent):void{str = String(event.result);}]]></fx:Script><s:TextArea x="74" y="146" width="306" height="91" text="{str}"/></s:Application>