·软件知识库 ·模板素材库
注册 | 登录

您所在的位置: INDEX > j2se > eclipse使用mapstruct 报错NoClassDefFoundError解决

eclipse使用mapstruct 报错NoClassDefFoundError解决

许杰 Sun Jul 05 12:01:51 CST 2015 字号:

mapstruct 用于bean复制,在编译时,将需复制的bean通过生成代码的形式进行复制。解决多层的类的问题。

<dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct</artifactId>
            <version>1.5.0.Final</version>
        </dependency>
        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-processor</artifactId>
            <version>1.5.0.Final</version>
        </dependency>

这是由于编辑eclipse需安装插件所致。如果不安装插件,那么运行时,会提示。

org.springframework.web.util.NestedServletException: Handler dispatch failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class ***.IncIndicatorContentMapper

解决问题:

window-eclipse marketplace 搜索m2e-apt。install

安装后,需重启eclipse。然后配置maven

window---preferences 搜索maven ,在annotation processing

选择如下图

然后点击同意并关闭,系统会自动编译eclipse中的maven工程,只要使用了该包功能的,那么会自动在编译类*/target/**classes/***下生成相应的实现类。

定义复制类 

TestMapper.java

/**
 * @author uto
 */
@Mapper
public interface TestMapper {
    TestMapper INSTANCE = Mappers.getMapper(TestMapper .class);

    com..biz.entity.AfficheListBizRes copyAfficheListBizRes(com.message.entity.AfficheListBizRes source);

}

编译后:自动产生一个接口实现类。

调用使用

com..biz.entity.AfficheListBizRes responseBean = IncIndicatorContentMapper.INSTANCE.copyAfficheListBizRes(baseResponse.getData());




『相关搜索』
版本信息:kms v1.3 鄂ICP备2023004815号-1 51LA统计