- 浏览: 1146839 次
- 性别:
- 来自: 火星郊区
博客专栏
-
OSGi
浏览量:0
文章分类
- 全部博客 (695)
- 项目管理 (48)
- OSGi (122)
- java (79)
- Vaadin (5)
- RAP (47)
- mysql (40)
- Maven (22)
- SVN (8)
- 孔雀鱼 (10)
- hibernate (9)
- spring (10)
- css (3)
- 年审 (6)
- ant (1)
- jdbc (3)
- FusionCharts (2)
- struts (4)
- 决策分析 (2)
- 生活 (10)
- 架构设计 (5)
- 破解 (2)
- 狼文化 (4)
- JVM (14)
- J2EE (1)
- 应用服务器 (1)
- 我的链接 (5)
- 数学 (2)
- 报表 (1)
- 百科 (6)
- Flex (7)
- log4j (2)
- PHP (1)
- 系统 (2)
- Web前端 (7)
- linux (6)
- Office (1)
- 安全管理 (5)
- python (2)
- dom4j (1)
- 工作流 (3)
- 养生保健 (4)
- Eclipse (8)
- 监控开发 (1)
- 设计 (3)
- CAS (1)
- ZK (41)
- BluePrint (3)
- 工具 (1)
- SWT (7)
- google (2)
- NIO (1)
- 企业文化 (2)
- Windoes (0)
- RCP (7)
- JavaScript (10)
- UML (1)
- 产品经理 (2)
- Velocity (10)
- C (1)
- 单元测试 (1)
- 设计模式 (2)
- 系统分析师 (2)
- 架构 (4)
- 面试 (2)
- 代码走查 (1)
- MongoDB (1)
- 企业流程优化 (1)
- 模式 (1)
- EJB (1)
- Jetty (1)
- Git (13)
- IPV6 (1)
- JQuery (8)
- SSH (1)
- mybatis (10)
- SiteMesh (2)
- JSTL (1)
- veloctiy (1)
- Spring MVC (1)
- struts2 (3)
- Servlet (1)
- 权限管理 (1)
- Java Mina (1)
- java 系统信息 (6)
- OSGi 基础 (3)
- html (1)
- spring--security (6)
- HTML5 (1)
- java爬虫搜索 (1)
- mvc (3)
最新评论
-
Tom.X:
http://osgia.com/
将web容器置于OSGi框架下进行web应用的开发 -
chenyuguxing:
你好, 为什么我的bundle export到felix工程中 ...
在Apache Felix中运行bundle -
string2020:
<niceManifest>true</ni ...
Bundle Plugin for Maven -
jsonmong:
OSGI,是未来的主流,目前已相当成熟。应用OSGI比较好的, ...
基于OSGi的声明式服务 -
zyhui98:
貌似是翻译过来的,有很少人在linux上做开发吧
如何成为“10倍效率”开发者
Apache已经将Pivot升级为顶级项目,虽然从前不知道这个项目,但是看来还是有发展前途的。我看好它,因为我对FLEX语法实在不感冒,还是Java写着舒服。似乎也很少有人用AWT/Swing做商业产品,但Applet的应用还是常见的。就研究研究Pivot吧。
既然Apache将其定位为RIA in Java,做J2EE的还是关注下吧。这是纯Java血统的东西(相比于FLEX),下了开发包,看例子,语法类似Swing,还是比较容易接受的。但是官方例子中没有完整的目录结构,构建开发环境还是留下了一些障碍。可能是之前没有接触过。我自己摸索了一个适应web开发的目录结构,可能不是最好的,但是是可行的。如下:
这里用了ANT进行jar打包,之前用Eclipse的导出打包不好用,就自己写了个ANT构建脚本运行,还真好用了。
目录结构还是传统的web项目,不同的是webapp下也放置了lib,当然就是运行项目所需的lib库,如果放到WEB-INF/lib下,那页面是不能直接访问到的,而pivot程序是直接在页面显示调用类库的,就需要放到可见的位置。不过我是在WEB-INF/lib下也放置了一份,那里的在编译路径里的,这样不冲突,也为ANT构建省去来回设置类路径的麻烦。jar包也不大,基本的才1.29M,没有办法,谁让人家是RIA呢。
先从Java Application开始吧,我是参照官方示例学习的。但是如果你刚下载开发包,估计得看上一阵子呢。其实很简单,就是一个类,一个XML配置文件(Pivot中是以wtkx作为扩展名的)。下面用代码来说明,更为直观。
- package pivot.tutorials.hellowtkx;
- import org.apache.pivot.collections.Map;
- import org.apache.pivot.wtk.Application;
- import org.apache.pivot.wtk.DesktopApplicationContext;
- import org.apache.pivot.wtk.Display;
- import org.apache.pivot.wtk.Window;
- import org.apache.pivot.wtkx.WTKXSerializer;
- public class HelloWTKX implements Application {
- private Window window = null;
- public void startup(Display display, Map<String, String> map)
- throws Exception {
- WTKXSerializer wtkxSerializer = new WTKXSerializer();
- window = (Window) wtkxSerializer.readObject(this, "helloWTKX.wtkx.xml");
- window.setTitle("Hello JavaEye");
- window.open(display);
- }
- public boolean shutdown(boolean optional) throws Exception {
- if (window != null) {
- window.close();
- }
- return false;
- }
- public void resume() throws Exception {
- }
- public void suspend() throws Exception {
- }
- public static void main(String[] args) {
- DesktopApplicationContext.main(HelloWTKX.class, args);
- }
- }
package pivot.tutorials.hellowtkx; import org.apache.pivot.collections.Map; import org.apache.pivot.wtk.Application; import org.apache.pivot.wtk.DesktopApplicationContext; import org.apache.pivot.wtk.Display; import org.apache.pivot.wtk.Window; import org.apache.pivot.wtkx.WTKXSerializer; public class HelloWTKX implements Application { private Window window = null; public void startup(Display display, Map<String, String> map) throws Exception { WTKXSerializer wtkxSerializer = new WTKXSerializer(); window = (Window) wtkxSerializer.readObject(this, "helloWTKX.wtkx.xml"); window.setTitle("Hello JavaEye"); window.open(display); } public boolean shutdown(boolean optional) throws Exception { if (window != null) { window.close(); } return false; } public void resume() throws Exception { } public void suspend() throws Exception { } public static void main(String[] args) { DesktopApplicationContext.main(HelloWTKX.class, args); } }
官方示例中配置文件都以XXX.wtkx形式存在,其实就是XML文档,我就直接以.xml来编辑,这样在Eclipse中可以高亮显示,否则就是普通文本编辑了。配置文件的编写参考官方示例就行了。我还加上了的XML声明。
- <?xml version="1.0" encoding="UTF-8" ?>
- <Window title="Hello WTKX" maximized="true"
- xmlns:wtkx="ttp://pivot.apache.org/wtkx"
- xmlns="org.apache.pivot.wtk">
- <content>
- <Label text="Hello JavaEye! - The Pivot WTKX Application"
- styles="{font:'Arial bold 24',color:'#ff0000',
- horizontalAlignment:'center',verticalAlignment:'center'}" />
- </content>
- </Window>
<?xml version="1.0" encoding="UTF-8" ?> <Window title="Hello WTKX" maximized="true" xmlns:wtkx="ttp://pivot.apache.org/wtkx" xmlns="org.apache.pivot.wtk"> <content> <Label text="Hello JavaEye! - The Pivot WTKX Application" styles="{font:'Arial bold 24',color:'#ff0000', horizontalAlignment:'center',verticalAlignment:'center'}" /> </content> </Window>
基本的Pivot应用程序都是实现了Application接口,自然也要实现其中的抽象方法。从方法名启动,关闭,唤醒和挂起不难看出这是进程的状态转化方法。负责继承状态改变时的处理。主函数就是Pivot应用程序的执行方式,这都是固定的写法了,传入本类的class和主函数的参数。
类中定义一个私有属性window,就是Pivot应用程序的窗口对象,在startup方法中进行进程加载启动时的事情。WTKXSerializer类在官方文档中解释为“从XML中加载对象层次结构”,可以看出类似于MXML,控件的定义都是写在配置文件中的。只不过这个XML编码时IDE还不能给出提示。我想是Schema还没有最后固定,编码时只能按照已有定义来编写。程序就可以解析XML了。wtkxSerializer对象读取XML配置文件,并从中获取window实例(window是根元素)。中间可以是业务流程的处理。这里是对window的title进行了设置,编码风格很像Swing。最后一步是window的open()方法,传入display参数。在shutdown()方法中别忘记关闭window就可以了。
此时程序就可以以Application方式运行了。得到效果:
第一部分介绍到此结束,第二部分中将介绍Web应用中的Pivot部署和用ANT构建自定义jar包。
我们探究了如何构建Pivot开发框架,编写Pivot桌面应用程序。这一篇我们来说说如何在web环境中部署Pivot程序。webapp发布目录 如下所示:
css中的样式表和js下的JavaScript脚本都是根据官方示例中拷贝下来的,其中最重要的是deployJava.js,它是展示Java applet的工具包,Pivot在页面中就是以Applet的形式展现的,js文件在http://java.com/js/deployJava.js 下载。Lib下是Pivot应用所依赖的类库,可以看出pivot.jar是我自定义的jar,就是编好代码打的包,而WEB-INF/lib下的库和Pivot没有关系,那里的库正常是访问不到的。
下面展示HTML页面
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
- <title>Push Buttons</title>
- <script src="/pivot/js/deployJava.js" type="text/javascript"></script>
- </head>
- <body>
- <script xmlns="" type="text/javascript">
- var attributes = {
- code:'org.apache.pivot.wtk.BrowserApplicationContext$HostApplet',
- width:'480',
- height:'360'
- };
- var libraries = [];
- libraries.push("/pivot/lib/pivot-core-1.4.jar");
- libraries.push("/pivot/lib/pivot-wtk-1.4.jar");
- libraries.push("/pivot/lib/pivot-wtk-terra-1.4.jar");
- libraries.push("/pivot/lib/pivot.jar");
- attributes.archive = libraries.join(",");
- var parameters = {
- codebase_lookup:false,
- java_arguments:'-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true',
- application_class_name:'pivot.tutorials.buttons.PushButtons'
- };
- deployJava.runApplet(attributes, parameters, "1.6");
- </script>
- </body>
- </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <title>Push Buttons</title> <script src="/pivot/js/deployJava.js" type="text/javascript"></script> </head> <body> <script xmlns="" type="text/javascript"> var attributes = { code:'org.apache.pivot.wtk.BrowserApplicationContext$HostApplet', width:'480', height:'360' }; var libraries = []; libraries.push("/pivot/lib/pivot-core-1.4.jar"); libraries.push("/pivot/lib/pivot-wtk-1.4.jar"); libraries.push("/pivot/lib/pivot-wtk-terra-1.4.jar"); libraries.push("/pivot/lib/pivot.jar"); attributes.archive = libraries.join(","); var parameters = { codebase_lookup:false, java_arguments:'-Dsun.awt.noerasebackground=true -Dsun.awt.erasebackgroundonresize=true', application_class_name:'pivot.tutorials.buttons.PushButtons' }; deployJava.runApplet(attributes, parameters, "1.6"); </script> </body> </html>
关键是JS段代码,其实都是固定套路,只需修改自定义的jar即可,其他段根据字母意思即可理解,关键是lib库的位置一定要对。下面说说ANT打包。
- <?xml version="1.0" encoding="UTF-8" ?>
- <project name="pivot" default="all">
- <description>The Pivot Application</description>
- <!-- 定义文件夹 -->
- <property name="srcDir" location="." />
- <property name="classDir" location="../webapp/WEB-INF/classes" />
- <property name="libDir" location="../webapp/WEB-INF/lib" />
- <property name="webDir" location="../webapp" />
- <!--用于输出打包的文件夹-->
- <property name="tempDir" location="${java.io.tmpdir}/${ant.project.name}" />
- <property name="targetDir" location="../target" />
- <!-- 定义classpath -->
- <path id="master-classpath">
- <fileset file="${libDir}/*.jar" />
- <pathelement path="${classDir}" />
- </path>
- <!-- 执行清理 -->
- <target name="clean">
- <delete dir="${classDir}" />
- <delete dir="${tempDir}" />
- <delete file="${targetDir}/${ant.project.name}.jar" />
- <delete file="${targetDir}/${ant.project.name}.war" />
- <delete dir="${targetDir}" />
- </target>
- <!-- 初始化任务 -->
- <target name="init" depends="clean">
- <mkdir dir="${targetDir}" />
- <mkdir dir="${tempDir}" />
- <mkdir dir="${classDir}" />
- </target>
- <!-- 编译 -->
- <target name="compile" depends="init" description="compile the source files">
- <javac srcdir="${srcDir}" destdir="${classDir}" debug="true" encoding="UTF-8">
- <classpath refid="master-classpath" />
- </javac>
- <copy todir="${classDir}" overwrite="true">
- <fileset dir="${srcDir}">
- <include name="**/*.xml" />
- <include name="**/*.properties" />
- </fileset>
- </copy>
- </target>
- <!--打jar包-->
- <target name="jar" depends="compile">
- <jar jarfile="${targetDir}/${ant.project.name}.jar">
- <fileset dir="${classDir}">
- <include name="**/*" />
- </fileset>
- </jar>
- </target>
- <!—准备war包 -->
- <target name="preWar" depends="jar">
- <copy todir="${tempDir}/WEB-INF/lib" overwrite="true">
- <fileset dir="${libDir}">
- <include name="*.jar" />
- </fileset>
- </copy>
- <copy todir="${tempDir}" overwrite="true">
- <fileset dir="${webDir}">
- <include name="**/*" />
- </fileset>
- </copy>
- </target>
- <!--打war包-->
- <target name="war" depends="preWar">
- <jar jarfile="${targetDir}/${ant.project.name}.war">
- <fileset dir="${tempDir}">
- <include name="**/*" />
- </fileset>
- </jar>
- </target>
- <!-- 清理临时目录 -->
- <target name="all" depends="war">
- <delete dir="${tempDir}" />
- </target>
- </project>
<?xml version="1.0" encoding="UTF-8" ?> <project name="pivot" default="all"> <description>The Pivot Application</description> <!-- 定义文件夹 --> <property name="srcDir" location="." /> <property name="classDir" location="../webapp/WEB-INF/classes" /> <property name="libDir" location="../webapp/WEB-INF/lib" /> <property name="webDir" location="../webapp" /> <!--用于输出打包的文件夹--> <property name="tempDir" location="${java.io.tmpdir}/${ant.project.name}" /> <property name="targetDir" location="../target" /> <!-- 定义classpath --> <path id="master-classpath"> <fileset file="${libDir}/*.jar" /> <pathelement path="${classDir}" /> </path> <!-- 执行清理 --> <target name="clean"> <delete dir="${classDir}" /> <delete dir="${tempDir}" /> <delete file="${targetDir}/${ant.project.name}.jar" /> <delete file="${targetDir}/${ant.project.name}.war" /> <delete dir="${targetDir}" /> </target> <!-- 初始化任务 --> <target name="init" depends="clean"> <mkdir dir="${targetDir}" /> <mkdir dir="${tempDir}" /> <mkdir dir="${classDir}" /> </target> <!-- 编译 --> <target name="compile" depends="init" description="compile the source files"> <javac srcdir="${srcDir}" destdir="${classDir}" debug="true" encoding="UTF-8"> <classpath refid="master-classpath" /> </javac> <copy todir="${classDir}" overwrite="true"> <fileset dir="${srcDir}"> <include name="**/*.xml" /> <include name="**/*.properties" /> </fileset> </copy> </target> <!--打jar包--> <target name="jar" depends="compile"> <jar jarfile="${targetDir}/${ant.project.name}.jar"> <fileset dir="${classDir}"> <include name="**/*" /> </fileset> </jar> </target> <!—准备war包 --> <target name="preWar" depends="jar"> <copy todir="${tempDir}/WEB-INF/lib" overwrite="true"> <fileset dir="${libDir}"> <include name="*.jar" /> </fileset> </copy> <copy todir="${tempDir}" overwrite="true"> <fileset dir="${webDir}"> <include name="**/*" /> </fileset> </copy> </target> <!--打war包--> <target name="war" depends="preWar"> <jar jarfile="${targetDir}/${ant.project.name}.war"> <fileset dir="${tempDir}"> <include name="**/*" /> </fileset> </jar> </target> <!-- 清理临时目录 --> <target name="all" depends="war"> <delete dir="${tempDir}" /> </target> </project>
Eclipse中已经集成了ANT,只要新建build.xml的文件并且编写,右键就能直接运行,非常方便,ANT构建脚本的编写也很简单,关键是目录迭代不能遗漏,还有目录的定位,不过在IDE中都有提示,也很方便。
将打包好的jar放到webapp/lib下并且修改页面的js段代码即可看到效果了。
欢迎大家交流。
(全篇完)
发表评论
-
浅谈大型网站动态应用系统架构
2012-04-24 16:06 1175浅谈大型网站动态应用系统架构 动态应用,是相对于网站静态 ... -
让网站访问速度飞起来(前端篇)
2012-04-15 18:54 606帖子里很多坛友说到我的网站页面打开速度飞快,闪到了自己的眼睛 ... -
IE与FireFox下js和css的区别
2012-03-30 09:33 1407png透明 AlphaImageLoader fil ... -
前端开发速记卡
2012-03-25 14:50 1119web前端开发常用sheet -
JFreeChart中文乱码解决方案(方法汇总)
2012-01-05 11:01 1385由于JFreeChart组件的版本 ... -
Apache Pivot 2.0 简介
2011-12-05 10:57 1520Apache软件基金会发布Apac ...
相关推荐
标题"Pivot-WTK-Skin-Terra-2.0.1-build001.zip"提示我们这是一个与Apache Pivot相关的皮肤包,版本为2.0.1的build001。Apache Pivot是一个开源的用户界面开发框架,它允许开发者创建富客户端应用,支持多种平台。...
"pivot_130_beta2_full_thumb3hr_pivot_php_" 这个标题提到了一个软件版本,"pivot 130 beta2 full version",这表明我们在讨论的是 Pivot 软件的第 130 版本的 Beta 2(测试版2)。"full version" 指的是这个版本是...
Pivot,通常指的是数据透视表或数据透视图,是一种强大的数据分析工具,用于汇总、组织、分析和展示大量数据。在IT行业中,特别是数据分析和数据可视化领域,Pivot扮演着至关重要的角色。它允许用户通过拖放操作来...
**PowerPivot 入门手册** PowerPivot是一款由Microsoft开发的强大数据分析工具,它整合在Excel和SharePoint中,为用户提供了高级的数据分析和建模功能。作为一个入门手册,本书将帮助初学者理解和掌握PowerPivot的...
SQL Server 关于 Pivot 详解 在本文中,我们将详细介绍 SQL Server 中的 Pivot 语句,并结合实例分析和实验题目,帮助读者快速掌握其使用。 Pivot 语法 Pivot 语句的基本语法如下: ``` SELECT <非透视的列>, ...
这种方法适合于数据量较小,且用户需要Excel样式的交互体验的情况。 4. **使用数据分析服务**:如果数据存储在数据库中,可以利用SQL Server Analysis Services (SSAS) 或其他OLAP工具创建多维数据集,并通过XMLA或...
从Oracle 11g版本开始,引入了PIVOT和UNPIVOT关键字,以支持显式的查询转换,即从行数据转换为列数据,或从列数据转换为行数据,进而生成交叉表格式的结果。这一技术尤其适用于报表生成,使得能够使用SQL语句针对...
PowerPivot for Excel 是微软公司推出的一款增强型数据模型工具,它与Excel紧密集成,使得用户能够从各种数据源中获取数据、创建数据分析模型,并在Excel内部进行数据探索和报告。PowerPivot扩展了传统Excel的功能,...
Easily set your pivot points inside Unity. Unlike the other pivot editor solutions on the asset store you can set the pivot point using scene handles, snap the pivot to mesh vertices. Features: • ...
标题《PowerPivot的数据分析》所涵盖的知识点主要围绕Microsoft Excel 2010中的PowerPivot工具,这是微软为数据分析师提供的一个强大的数据建模工具,用以增强Excel的数据分析功能。从内容概览可以看出,本书全面地...
总的来说,"pivot神通汉化版"是一款极具实用性和创新性的火柴人动画制作工具,它以其强大的功能和友好的用户体验,为动画爱好者提供了一个自由发挥创意的平台。无论你是动画新手还是有一定经验的制作者,都能在这个...
pivot4.1.13作为该领域的一款工具,它包含了多个关键功能和特性,旨在提升用户的创作体验。 首先,让我们深入了解一下pivot软件的核心特点: 1. **直观的用户界面**:pivot4.1.13提供了清晰直观的图形界面,使得...
《Excel Power Pivot数据建模分析(进阶篇)》是一份深入探讨Excel数据分析技术的资料集,主要聚焦在Power Pivot工具的应用,旨在帮助用户提升在数据处理和分析方面的专业技能。该资料集涵盖了一系列关键知识点,...
高斯迭代解方程 数值分析 西安交通大学 作业
用户还可以学习如何使用Power View的高级功能,如过滤、排序和交互式切片器,以实现更丰富的数据探索体验。 通过学习这些章节,用户不仅可以掌握PowerPivot的基本操作,还能提升数据建模和分析的能力,从而在日常...
在 Excel 环境中,PowerPivot for Excel 提供熟悉的工作站式的创作和分析体验。在 SharePoint 场中,PowerPivot for SharePoint 添加了服务器端应用程序和功能,支持对您发布PowerPivot指的是一组应用程序和服务,...
"pivot火柴人制作工具"是一款专为动画爱好者设计的软件,主要用于创建火柴人风格的动态动画。这款工具以其简单易用的特性,尤其适合初学者和那些想要快速制作简单动画的人。与传统的动画软件如Adobe Flash相比,...
在本文中,我们将深入探讨高斯列主元消去法(Gauss Pivot)以及如何在MATLAB环境中实现这一算法来解决线性方程组。高斯列主元消去法是一种数值线性代数方法,它通过一系列行变换将系数矩阵转化为上三角形或阶梯形...
此外,"Pivot3神通汉化版"还包含了一些增强插件,例如"Pivot3增强插件.exe",这些插件可以扩展软件的功能,如增加更多的图形元素、提高渲染质量等,进一步提升你的创作体验。 在实际使用过程中,你可能会遇到各种...
### PowerPivot工作簿创建指南 #### PowerPivot for Excel 概览 PowerPivot for Excel 是一款由Microsoft开发的插件,专为Excel 2010设计,旨在帮助用户处理和分析大规模数据集。通过PowerPivot,用户可以直接在...