2019独角兽企业重金招聘Python工程师标准>>>
tapestry组件有不少,具体的使用方法可去官网了解,常用的组件会在以后的教程中讲到。这篇文章主要以pagelink为例,简单讲解下组件通常使用的方法,以下可看出同是跳转到Index页面,但写法就就不是一样!可选择其中自己的喜欢的方式写,所有组件都适用这样的写法。代码如下:
AtComponent.java
/**
* 项目名称:TapestryStart
* 开发模式:Maven+Tapestry5.x+Tapestry-hibernate+Mysql
* 网址: http://www.flywind.org
* 版本:1.0
* 编写:飞风
* 时间:2012-02-29
*/
package com.tapestry.app.pages; import org.apache.tapestry5.annotations.Component;
import org.apache.tapestry5.corelib.components.PageLink;
public class AtComponent {
@Component(id="myPage", parameters={"page=Index"})
private PageLink index;
}
AtComponent.tml
<html t:type="layout" title="tapestryStart Index" t:sidebarTitle="Framework Version"
xmlns:t="http://tapestry.apache.org/schema/tapestry_5_3.xsd" xmlns:p="tapestry:parameter">
<a t:type="pagelink" t:page="Index" href="#;">index</a><br/>
<t:pagelink page="Index">index</t:pagelink><br/>
<a t:type="pagelink" t:id="myPage" href="#;">index</a><br/>
</html>
http://localhost/AtComponent