常量类
java类中的引用
@RequestMapping("/changeDelCode/{ids}")
@RequiresPermissions(“lwarticle:changeDelCode”)
@ResponseBody
public R changeDelCode(@PathVariable(“ids”) String ids) {
LwArticleEntity lwArticle = lwArticleService.queryObject(ids);
lwArticle.setDelCode(ConstantUtil.DelStatus.IS_DEL.getValue());
lwArticleService.update(lwArticle);
return R.ok();
}
mybatis的xml中的引用
- 引用属性
AND del_code = ${@com.platform.utils.ConstantUtil@IS_NOT_DEL}
- 引用子类的方法
AND del_code = ${@com.platform.utils.ConstantUtil$DelStatus@NO_DEL.getValue()}
借鉴地址 总结: 引用语法规则:${@path$subClass@Attr.getValueMethod}