08-08
16
Unable to find setter method for attribute:xxx
作者:Java伴侣 日期:2008-08-16
1. 检查 tld 配置文件有否写对 scope 属性
2. 重点:检查 tag 类该属性的 getter & setter ,看看是否有如下方法:
public void setScope(String scope);
如果有 getScope() 方法,其返回值只能是 String 而不是其他类型。譬如以下的 getter 是错的:
public StorageScope getScope();
请把这个方法重命名。
2. 重点:检查 tag 类该属性的 getter & setter ,看看是否有如下方法:
public void setScope(String scope);
如果有 getScope() 方法,其返回值只能是 String 而不是其他类型。譬如以下的 getter 是错的:
public StorageScope getScope();
请把这个方法重命名。
[本日志由 blurxx 于 2008-08-16 09:55 AM 编辑]
文章来自: 本站原创引用通告: 查看所有引用 | 我要引用此文章
Tags: setter method TAG
相关日志:
评论: 0 | 引用: 0 | 查看次数: 915
发表评论