debug模式,当以get方式请求不带参数值进来的时候(请求路径:“/test/date/query2”),debug走到Cnd cnd = Cnd.NEW();的时候就会提示source code does not match the bytecode ,哪里出了问题
@At("/query2")
@Ok("json")
@RequiresPermissions("test:query")
public List<Map> Query2(@Param("commodity_name") String commodity_name) {
List<Map> list = new ArrayList<>();
Cnd cnd = Cnd.NEW();
if (!StringUtils.isEmpty(commodity_name)) {