Your Flex frontend
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" backgroundColor="#FFFFFF" viewSourceURL="srcview/index.html">
<mx:RemoteObject id="myservice" fault="faultHandler(event)"
showBusyCursor="true" destionation="yourDest">
<mx:method name="JavaMethodName" result="resultHandler(event)" />
</mx:RemoteObject>
<mx:Script>
<![CDATA[
import mx.rpc.events.ResultEvent;
import mx.rpc.events.FaultEvent;
private function faultHandler(evt:FaultEvent):void
{
trace(evt.fault);
}
private function resultHandler(evt:ResultEvent):void
{
trace(evt.result);
}
]]>
</mx:Script>
<mx:Button x="250" y="157" label="Click" width="79" click="myservice.getOperation('JavaMethodName').send();"/>
</mx:Application>
Remoting-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<service id="remoting-service"
class="flex.messaging.services.RemotingService">
<adapters>
<adapter-definition id="java-object" class="flex.messaging.services.remoting.adapters.JavaAdapter" default="true"/>
</adapters>
<destination id="yourDest">
<properties>
<source>YourClassName</source>
</properties>
</destination>
<default-channels>
<channel ref="my-amf"/>
</default-channels>
</service>
Ваш класс Java
import java.util.Date;
public class YourClassName{
public String JavaMethodName() {
Date now = new Date();
return "Yourname " + now;
}
}
Теперь в вашем Java-классе вам нужно выписать ваше JDBC-соединение и вызвать базу данных, которую вы можете вернуть в flex как объект, оттуда вы можете отобразить его во внешнем интерфейсе в любом формате.