Mybatis manual

Mybatis manual

    • No setter found for the keyProperty 'menu_id'

No setter found for the keyProperty ‘menu_id’

"insertMenu" 
useGeneratedKeys="true" 
keyProperty="menu_id" 
parameterType="com.book.erp.entity.menu.Menu">
数据库定义了自动增长的ID
"insertMenu" 
useGeneratedKeys="true" 
parameterType="com.book.erp.entity.menu.Menu">
数据库没有定义自动增长的ID
"registerReader" 
parameterType="com.book.erp.entity.menu.Menu" 
useGeneratedKeys=true 
keyProperty="menuId" 
keyColumn="menu_id">
    

你可能感兴趣的:(数据库,mybatis,数据库,springboot)