Tag: setter预览模式: 普通 | 列表
08-08
16

Unable to find setter method for attribute:xxx

1. 检查 tld 配置文件有否写对 scope 属性

2. 重点:检查 tag 类该属性的 getter & setter ,看看是否有如下方法:

public void setScope(String scope);

如果有 getScope() 方法,其返回值只能是 String 而不是其他类型。譬如以下的 getter 是错的:

public StorageScope getScope();

查看更多...

Tags: setter method TAG

分类:Struts | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 843
08-06
27

事出必有因:occurred while calling setter of ..

   为了这个问题,迷茫了半天:怎么看set()/get()也没问题,因为我用的是boolean属性,很容易在自动生成时出错,但这次没有.检查hbm表,发现这句:type="java.lang.Byte",当初我为了把表字段建立成tinyint型而设置的,去掉即可!

查看更多...

Tags: setter

分类:Hibernate | 固定链接 | 评论: 0 | 引用: 0 | 查看次数: 1459