Bean property ' ' is not writable or has an invalid setter method.
Does the parameter type of the setter match the return type of the getter?
原因是我的service實作中沒有注入dao
注入即可:
private ShopRewardRecordDao shopRewardRecordDao;
public void setShopRewardRecordDao(ShopRewardRecordDao shopRewardRecordDao) {
this.shopRewardRecordDao = shopRewardRecordDao;
}