至于Asset这个东西之前一点儿也没有在意过。今天稍微看了一点儿。
首先这个单词的读音是/'æsɛt/(美音)。意思是资产;优点;有用的东西;有利条件。
Tapestry介绍的是: In Tapestry, Assets are any kind of static content that may be downloaded to a client web browser, such as images, style sheets and JavaScript files.
在Tapestry里面,Asset是任何可以下载到本地浏览器的东西,例如图片,css文件,javascript文件。
@Inject @Path("context:images/tapestry_banner.gif")
@Property private Asset banner;
以上可以创建一个Asset变量。我们可以在tml文件中这样引入它。
<input type="image" src="${banner}" />
就这些吧,其他的也不太懂了。