mapstruct使用报错

使用mapstruct 请求报错

Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError:

解决:

Mapper 引用的包错误。

错误的:import org.apache.ibatis.annotations.Mapper;

正确的:import org.mapstruct.Mapper;

-------------本文结束感谢您的阅读-------------