org.apache.ibatis.builder.IncompleteElementException: Could not find parameter map XXX.XXX.User

mybatis project      

XXX.XXX.User represents the package name. Class name

Because in a Mapper.xml parameterType is written as parameterMap, and this attribute is no longer used in mybaties.

Change parameterMap to parameterType.

Published 108 original articles · praised 48 · 50,000+ views

Guess you like

Origin blog.csdn.net/larry1648637120/article/details/100536191