阅读更多

11顶
0踩

编程语言

原创新闻 Wicket1.3正式发布

2008-01-03 11:10 by 见习编辑 bangyan2003 评论(2) 有4837人浏览
Wicket一个开发Java Web应用程序框架。它使得开发web应用程序变得容易而轻松。 Wicket利用一个POJO data beans组件使得它可以与任何持久层技术相结合。

此前推出了beta和rc共5个版本,现在正式版终于放出。

官方描述的特性如下:
last JDK-1.4 release (next release will be Java 5 based)
first Apache release: renamed packages to <code>org.apache.wicket</code>
simplified models API
simplified converter API
simplified validator API
now works with zero-config behind a proxy server using relative URLs
added Google Guice support
use your Wicket pages directly in a portal without changing a line of code (JSR-168/JSR-286 support)
switched logging API from commons-logging to slf4j
use velocity templates as panels in your pages with wicket-velocity
YUI-calendar and Joda time based date picker (wicket-datetime)
improved Ajax support
improved, more robust header contributions
filters duplicate javascript references
supports onload/ondomready events
javascript resources are gzipped by default
stateless pages and components for those parts of your application that needs to scale to extremely large numbers of users
improved AjaxTree/AjaxTreeTable
hybrid URL encoding makes search engines and your users happy
nested form components—create panels that contain forms and use them anywhere without worrying about the nesting of form tags
minimized session use by storing component hierarchy in file system (DiskPageStore)

更详细的信息请见http://www.apache.org/dyn/closer.cgi/wicket/1.3.0
reference见:http://cwiki.apache.org/WICKET/reference-library.html
来自: apache 综合
11
0
评论 共 2 条 请登录后发表评论
2 楼 neptune 2008-01-07 08:37
不知页面session问题解决的怎么样了?
1 楼 Allen 2008-01-04 10:21
下一个版本要一下子把大陆那么多JDK1.4的同志给抛弃了啊?!

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • Ext.grid.GridPanel实现点击多选

    Ext.grid.GridPanel中选中单元格时,不需要按ctrl键便可多选,重写Ext.grid.CheckboxSelectionModel中的handleMouseDown方法,该方法继承自Ext.grid.RowSelectionModel(),然后调用重写后的方法定义sm即可 ...

  • Ext.grid.GridPanel属性及方法等

    1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:...

  • Ext.grid.GridPanel的属性

    1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:表格...

  • Ext.grid.GridPanel |属性|方法|配置|详细介绍

    1、Ext.grid.GridPanel  主要配置项:  store:表格的数据集  columns:表格列模式的配置数组,可自动创建ColumnModel列模式  autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0  ...

  • Ext 中Ext.grid.GridPanel样式设置

    一:修改头样式 1:直接修改样式  监听gridpanel的'afterrender' 事件 listeners : {  'afterrender' : function(){  var elments = Ext.select(".x-grid3-header");//.x-grid3-hd

  • Extjs-表格 Ext.grid.GridPanel

    rn = new Ext.grid.RowNumberer(); 复选框 var sm = new Ext.grid.CheckboxSelectionModel({ //如果只允许用户通过复选框执行选中操作放开下面配置项 //handleMouseDown : Ext.emptyFn//可复用的空函数 //true...

  • extjs Ext.grid.Panel表格组件学习

    extjs Ext.grid.Panel表格组件学习 Summary 概述 Grids are an excellent way of showing large amounts of tabular data on the client side. Essentially a supercharged , GridPanel makes it easy to fetch, ...

  • Ext.grid.gridpanel

    1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 stripeRows:...

  • Ext.Grid.GridPanel属性与方法详解

    1、Ext.grid.GridPanel 主要配置项: store:表格的数据集 columns:表格列模式的配置数组,可自动创建ColumnModel列模式 autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0 ...

  • Ext4 Ext.grid.Panel调用reconfigure后如何同时更新bbar导航条

     本示例通过展示Ext4的Ext.grid.Panel调用reconfigure后如何同时更新gridPanel的bbar导航条,调用reconfigure如果不对bbar进行相关处理,bbar显示的还是上一次的信息,效果如下 初始状态 点击reconfigure重新...

  • ExtJs学习笔记——Ext.grid.EditorGridPanel的使用

    ExtJs学习笔记——Ext.grid.EditorGridPanel的使用 可编辑表格是指可以直接在表格的数据进行编辑,ExtJS的可编辑表格由Ext.grid.EditorGridPanel表示,xtype为editorgrid。使用EditorGridPanel与使用普通的GridPanel...

  • Extjs学习 Ext.grid.GridPanel

    1、Ext.grid.GridPanel  主要配置项:  store:表格的数据集  columns:表格列模式的配置数组,可自动创建ColumnModel列模式  autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0  ...

  • 自定义设置Ext.grid.gridPanel样式

    一:修改头样式 1:直接修改样式 监听gridpanel的'afterrender' 事件 listeners : { 'afterrender' : function(){ ... var elments = Ext.select(".x-grid3-header");//.x-grid3-hd ...

  • Ext.grid中的属性以及方法

    1、Ext.grid.GridPanel主要配置项:store:表格的数据集columns:表格列模式的配置数组,可自动创建ColumnModel列模式autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0stripeRows:表格是否...

  • Ext.TabPanel选项卡初始化后添加Ext.grid.gridPanel组件

    想写一个布局的页面,其中用到了tabpanel,想在选项卡中添加一个gridpanel表格,但不想在tabpanel初始化的时候写在items里面。 因为初学,并不知该如何实现,上网找了找也没找到相关的例子。没办法,只好去查api...

  • Ext.grid.GridPanel

    1、Ext.grid.GridPanel  主要配置项:  store:表格的数据集  columns:表格列模式的配置数组,可自动创建ColumnModel列模式  autoExpandColumn:自动充满表格未用空间的列,参数为列id,该id不能为0  ...

  • 1基于蓝牙的项目开发--蓝牙温度监测器.docx

    1基于蓝牙的项目开发--蓝牙温度监测器.docx

  • AppDynamics:性能瓶颈识别与优化.docx

    AppDynamics:性能瓶颈识别与优化

  • percona-xtrabackup-2.4.28-1.ky10.x86-64.rpm

    xtrabackup银河麒麟v10rpm安装包

  • 2024年全球产品经理大会(脱敏)PPT合集(34份).zip

    2024年全球产品经理大会(脱敏)PPT合集,共34份。 1、AI 原生产品设计的 7 个反共识 2、AI 时代的策略产品与内容社区推荐实践 3、AI时代的用户界面设计 4、AI智能陪练:大模型赋能销售成长 5、AI浪潮中的应用主义者 6、AI驱动下的B端产品的思考与创新 7、AI驱动业务增长的探索与实践 8、Al Native 生产力工具的发展、价值与商业落地 9、B端产品设计避坑指南 10、GenAl驱动的xGen电商AI平台产品实践与思考 11、Kwaipilot 在快手的落地实践 12、OPPO AI的探索新交互到新生态 13、RPA + AI打造大模型驱动的领先数字员工 14、产品AI化重塑的思考与实践 15、产品分析:通过关键指标助力团队与企业成功 16、从RPA到Al Agent,高价值、可落地的智能助手 17、从流量运营到AI驱动的机器增长 18、做穿越时代的产品 19、创造好工具,创造世界一流产品力 20、医疗健康场景的大模型产品探索 21、即时零售柔性供应链体系建设与AIGC在零售数字化的探索 22、向量数据库的出海实践与未来展望 23、大模型在B端落地思考实践

Global site tag (gtag.js) - Google Analytics