当前位置:编程学习 > 网站相关 >>

Tapestry5组成结构

1、tapestry的缺省页为 Start, 同时也可以自定义缺省页。
 
2、一个页面一般包括一个页面类(java)和一个页面模版(tml)。
3、页面类:
Start类就是页面类
      在tapestry5中,页面类是纯粹的POJO(plan Old Java Object),无需继承特定的类,也无需实现特定的接口。但是页面类必须放在特定的包中
如web.xml文件中
<context-param>   
<param-name>tapestry.app-package</param-name>   
<param-value>example.hellotapestry</param-value>  
</context-param>
       我们将 tapestry.app-package 设置为了example.hellotapestry,那么页面类就要放置在"example.hellotapestry.pages"包中,组件类要放在“         example.hellotapestry.components”包中。如果一个类(通常是抽象类)是其他页面/组件类的基类,那么应该放置在“example.hellotapestry.base”包中,而不是“example.hellotapestry.pages”或者“example.hellotapestry.components”包中,这样他就不再是一个可用的页面/组件了,只用于被其他页面/组件继承。
 
补充:综合编程 , 其他综合 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,