欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Tapestry4 tips TapestryApacheWeb 

程序员文章站 2024-02-20 20:45:16
...
1.如果在属性的getter和setter方法中,只定义了其中的一个,而且是抽象的,那
T4会自动不全对应的getter或者setter,
例如:public abstract String getName(),T4在增强类中将生成public void
setName(String name)方法,反之亦然。这样如果你在这时
定义了个非抽象的对应的方法,将被T4生成的方法覆盖。类中定义如下两种方法:
public abstract void setName(String name);
public String getName(){
return "myname";
}
getName方法将被覆盖。
2.如果定义了<meta key="org.apache.tapestry.page-class-packages"
value="org.mycompany.pages"/>,在类与模板的映射中,假如有个
org.mycompany.pages.manage包,则包中的类对应根目录下的manage目录,但如果
将包中类对应的properties文件也放入根目录下的manage目录,
T4将无法找到properties文件,此时的properties文件应该放到WEB-INF/manage目
录中。
3.Note that if there are other components such as some TextField
components following the "addToCart"(Submit组件), they will not have
been rendered yet and the user inputs will not have been
stored into the page object when the listener is called.就是说在Submit组
件中定义的listener方法,如果被调用,则无法取得Submit组件后面定义的其他
Form组件中的值。


Tapestry4 tips
            
    
    
        TapestryApacheWeb Tapestry4 tips
            
    
    
        TapestryApacheWeb