There is no getter for property…

在单个参数时,使用报错,没有判断不会报错。
原因:mybatis使用了内部对象。
解决:使用@Param注解

  1. List<Article> recommandList(@Param("siteid") Integer siteid);

自增主键

:::info useGeneratedKeys=“true” //仅支持mysql,Oracle需要自己赋值 :::