Can't specify a name for the Spring Service annotation
If the interface definition something like
@Mapper(componentModel = "spring", componentModelName = "cakeMapperV2")
public interface CakeMapper{
Cake map(Cupcake cupcake);
}
@Service("cakeMapperV2")
public class CakeMapperImpl {
}