初篇学习potomac-framework

本文介绍Potomac框架的基础知识及其开发环境搭建流程。Potomac框架借鉴了OSGI和Eclipse RCP技术,适用于企业级Flex模块开发。文中详细说明了安装配置步骤,并提供了创建项目的示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

  注:本文只作本人记录,不作为技术分享。

        

 

      固定链接: http://www.nethref.com/?p=281

 

      官方网址:http://www.potomacframework.org/

      下载地址:http://www.potomacframework.org/downloads/

      论坛讨论:http://forum.potomacframework.org/

      API文档:http://www.potomacframework.org/1.0beta/asdoc

      学习文档:http://www.potomacframework.org/documentation/

 

 

      potomac-framework源于目前多种技术的设计思想,类似于OSGI和Eclipse RCP技术,适合做企业级Flex模块块的开发,但目前最新版是Beta 0.8版,只建议学习研究,不做实际项目应用。

 

      第一、Flex的potomac-framework中一个模块化的框架,参考OSGI的原理,而其构建成用户的UI界面,则是由”parts(组件)“拼装而成。这点相信有Eclipse的使用经验的朋友都明白。

      第二、potomac-framework是一种通用的商用应用Flex程序框架,拥有框架的依赖注入及支持反射和可扩展机制。

 

      第三、总体来说,potomac的设计思想是很优秀的,是值得推荐理由。但目前其拥的多种机制都还不成熟。如果企业或团体需要应用,则需要自己实现他的扩展机制。

 

   如何搭建potomac的开发环境,在官网上已有详细的文档体现。具体页面为:http://www.potomacframework.org/documentation/getting-started/,但我还是把内容再贴出来吧。

 

    1、做好环境搭建准备

          安装Java SDK

          下载 Potomac  立即下载 

          安装好Flash Builder4或Eclipse

          安装Potomac基于Eclipse的插件,老版本Eclise放在Plugins中而新版本的放在Dropins,插件在下载好的PhotoMac包中有为”com.elementriver.potomac.sdk_1.0.0_vXXXXXX.jar

 

    2、然后配制PhotoMac的开发平台

         在Window下的Perferences中,指定Potomac解压位置中的targetPlatform目录。

        不清楚可参考:http://www.potomacframework.org/documentation/modularity/about-the-target-platform/

 

 

接下来就是创建应用了,这里我就不多说了,英语不难,大家都看的懂。把这例子跑起来后再细读官方文档和API吧。

 

 

Create a Bundle
Potomac projects are composed of bundles (i.e. Potomac modules). Bundles are hosted within Flex Library Projects.

Create a new Flex Library Project.

Once the library project is created, you need to add the Potomac Bundle Nature to it.

Right-click on the project and select the new “Add Potomac Bundle Nature”.

When that is complete, you should notice that Potomac created a new file named “bundle.xml” in the project’s root folder.



Configure the Bundle
Now you’ll need to perform some standard configuration to the bundle. Open the bundle.xml file.

In the Bundle XML Editor, add the two Potomac bundles, potomac_core and potomac_ui, to the dependencies list. Click save.





Add a Sample Component
You’ll need to add at least on UI component to see anything on screen. Here’s a simple one you can cut-n-paste in called MyComponent.mxml:

<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="400" height="300">
	<mx:Metadata>
		[Page(id="hellopage",title="Hello World")]
		[Part(id="hellopart",page="hellopage",
		      folder="default",title="Hello World")]		
	</mx:Metadata>
	<mx:Label x="10" y="10" text="Hello World"/>
</mx:Canvas>




Create an Application
A Potomac application is a normal Flex Project with the Potomac Application Nature. Create a Flex Project, then right-click on the project and select “Add Potomac Application Nature”.





Configure the Application
Open the newly created appManifest.xml. This file is used to configure your Potomac application.

Add potomac_ui, potomac_ui_templates_dark, and your newly created bundle to the manifest’s bundle list.

Set potomac_ui and potomac_ui_templates_dark to load as RSLs.

Now select the potomac_dark template (it became available after we included the potomac_ui_templates_dark bundle). Click save.

Lastly, you’ll need one Potomac stub to the application’s main mxml file. Simply add an instance of the PotomacInitializer like:

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" 
	layout="absolute" xmlns:derived="potomac.derived.*">
	<derived:PotomacInitializer/>
</mx:Application>




Run the Application
Now you’re ready to run the application



Importing the Sample Project

Potomac comes with a (hopefully) easy to follow sample project.

The sample project includes two bundles and one application.

To import the sample app into FlexBuilder, click on File – Import…

Select General – Existing Projects Into Workspace.

Select the “exampleApp” folder that was extracted from the potomac zip file for the root directory.

Check the “Copy projects into workspace” option.

Click Finish.

Once the projects import and rebuild, you should be able to run the sample appication.

 

 

          源文固定链接: http://www.nethref.com/?p=281

 

 

 

内容概要:本文围绕C语言在数智化时代的应用展开,首先介绍了C语言在人工智能、大数据等领域的底层支撑作用,强调其在操作系统、数据库等方面的重要性。接着详细讲解了C语言的经典算法实现,包括排序(如快速排序)和查找(如二分查找),展示了指针与数组的高效操作及递归、分治等思想的应用。然后通过树莓派智能控制的实际案例,如LED灯闪烁控制,展现了C语言在物联网、智能家居等数智化场景中的应用,涉及GPIO引脚操作、传感器数据采集等。最后阐述了C语言教程的核心价值,包括工程化开发能力、对底层逻辑的理解以及跨领域的应用潜力,并提出了深入学习、实践驱动和技术融合的学习建议。; 适合人群:对C语言有一定基础,希望深入了解其在数智化时代应用场景的开发者,尤其是对嵌入式系统、底层开发感兴趣的读者。; 使用场景及目标:①掌握经典算法(如排序、查找)的实现原理及其优化方法;②理解C语言在树莓派等嵌入式设备中的具体应用,如GPIO控制、传感器数据采集;③提高工程化开发能力,培养符合企业标准的开发流程。; 阅读建议:本文不仅提供代码示例,还深入剖析了背后的原理和应用场景,因此建议读者结合实际项目进行动手实践,同时可以参考推荐的书籍和开源项目,逐步提升对C语言的理解和应用水平。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值