Tapestry5新特性列表:
Tapestry5新特性一、組件類不再需要繼承基類;
Tapestry5組件類可以不受框架限制,不需要繼承基類,也不需要定義成抽象的,生命周期完全使用注釋來實現。
- package org.example.myapp.components;
- import org.apache.tapestry.MarkupWriter;
- import org.apache.tapestry.annotations.ComponentClass;
- import org.apache.tapestry.annotations.BeginRender;
- @ComponentClass
- public class HelloWorld
- {
- @BeginRender
- void renderMessage(MarkupWriter writer)
- {
- writer.write("Bonjour from HelloWorld component.");
- }
- }
@ComponentClass相當於標記extends BasePage
@BeginRender相當於implements PageBeginRenderListener
Tapestry5新特性二、組件類不再是抽象類,而是純粹的簡單的POJO(plain old Java objects)
配置也完全用注釋實現了,包括IOC容器,也就是基於注釋配置的IOC容器,放棄了hivemind。module和service定義類:
- package org.example.myapp.services;
- import org.apache.tapestry.ioc.annotations.Id;
- @Id("myapp")
- public class MyAppModule
- {
- public static Indexer buildIndexer()
- {
- return new IndexerImpl();
- }
- }
需要注入的類:
- @Inject("service:myapp.Indexer")
- private Indexer indexer;
也就是buildIndexer方法為固定寫法,格式為build{serviceId}。當然還有hivemind的影子,比如多module和contribute等等。
Tapestry5新特性三、不再使用XML配置文件和組件定義文件(.page,.jwc),所有的配置信息使用注釋(annotations)實現。
頁面和組件的配置文件都可以完全使用注釋來實現,這個特性在Tapestry4中已經可以使用了,沒什麼新奇的,不過完全在注釋中配置,看著代碼有點亂,寫多了就開始懷疑這還是Java類麼。
例子:
- package org.example.app.pages;
- import org.apache.tapestry.annotations.Component;
- import org.apache.tapestry.annotations.ComponentClass;
- import org.example.app.components.Count;
- @ComponentClass
- public class Countdown
- {
- @Component(parameters =
- { "start=5", "end=1", "value=countValue" })
- private Count _count;
- private int _countValue;
- public int getCountValue()
- {
- return _countValue;
- }
- public void setCountValue(int countValue)
- {
- _countValue = countValue;
- }
- }
Tapestry5新特性四、組件類和模版的任何改變都可以馬上反應出來,不需要任何重啟。
Tapestry 5自動重新加載改變過的類和摸板,這個應該是腳本語言的特性,但從說明中好像只有組件類有此特性,其他的類可能還是需要重啟。不過這已經是很大的進步了,用java實現了腳本語言的動態載入功能。現在隨著越來越多的對classloader的研究,對Java的使用也越來越深入了。
Tapestry5新特性五、Blazing速度比Tapestry4的速度更快。
關於性能,沒有了解析配置文件的花銷,估計Tapestry4中的初始化慢的問題應該可以解決了。如果說比純servlet和JSP快的話,那就要歸功於cache的使用了。
總起來說Tapestry5還是值得期待的,現在還處於開發階段,許多特性都是沒有定型的,如果有更好的概念,估計HLS會加進去了(PS:真是服了他了,Tapestry4.1加入了AJax的功能,正要研究呢,卻又推出了這個T5,搞的我心癢癢的,不過好久沒有這種看到新特性的興奮了)。其中提出了許多的新概念還是很值得借鑒的,包括基於注釋的IOC容器,現在spring也推出spring-annotation包了;基於注釋的頁面顯示生命周期定義,@SetupRender、 @BeginRender、 @BeforeRenderBody等,這樣整個類除了注釋外,沒有任何侵入性了,把注釋去掉就是個簡單的Java類,不需要繼承,不需要實現固定方法。而且Tapestry5的生命周期基於狀態機和隊列算法,而不是尾遞歸,這樣周期可以定義的很細,而且實現起來也簡單了。