开发者

Developing Modular Flex Applications

开发者 https://www.devze.com 2022-12-29 11:59 出处:网络
I\'d like to be able to understand how to develop a Flex application such that I could provide implementation classes at runt开发者_JS百科ime. In the Java world I\'d specify interfaces in an JAR (e.g.

I'd like to be able to understand how to develop a Flex application such that I could provide implementation classes at runt开发者_JS百科ime. In the Java world I'd specify interfaces in an JAR (e.g. myapp-api.jar), the implementation in a separate JAR (e.g. myapp-impl.jar) and package these along with other resources in the application WAR (e.g. myapp.war). Within the code of the application I would instantiate the implementation classes dynamically.

Is this approach possible in Flex? I'm aware that I can instantiate classes dynamically so that's a good start. I'm a bit confused by modules, RSLs and SWCs though.

I was hoping to create a SWF application that had references to an interfaces SWC and an implementation SWC. The idea is that if I need to tweak the application for a specific customer then I could create a new implementation SWC and not have to modify the SWF or interface SWC.

Any ideas?


This is a bit harder to do in flash/flex than it is in java, or at least it is a bit more obscure if you are coming from a java background). I have a couple of pointers for you.

You only have to use RSLs if you really want to have separate libraries of classes at runtime, and especially if you think this library will be used across several projects that the same set of people will be using. (They are mainly intended to decrease download/startup time)

You can also divide your app in several parts yourself - in that case you need to make sure that you don't pack the same info twice - this can be done by generating a linkreport on the first compiled swf and excluding these classes from the second compile. This is how modules work in flex.

SWCs are mainly used as a compile-time library (they are basically a zip containing a swf and a metadata xml file that describes its contents).

If you want to have a separate set of interfaces in a library you could generate a swc with the interfaces and compile another swc with the implementation, you should exclude the interfaces when compiling the implementation classes if you want to avoid having duplicate class/interface definitions. If you compile your final app when linking both the interface and implementation SWCs without excluding the classes you can just use your single final SWF to run the app - if you want to keep it really separate you should look into modules (or plain loading swfs if you are creating a pure actionscript project).

I did use SWCs myself as described above, and am now looking into RSLs and Modules myself for our curren project.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号