我在一起使用mapstruct和lombok时遇到了一些问题:
EntityMapper.java:10: error: Unknown property "id" in result type Entity. Did you mean "null"?
@Mapping(target = "id", ignore = true)
^
我的Entity和EntityDto类:
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class Entity {
private int id;
private String property;
}
@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
public class EntityDto {
private String property;
}
实体Map器:
@Mapper(implementationName = "MapStruct<CLASS_NAME>")
public interface EntityMapper {
// neither of them work
@Mapping(target = "id", ignore = true)
//@Mapping(target = "id", defaultValue = "0")
Entity map(EntityDto dto);
EntityDto map(Entity entity);
}
在此配置中,它会导致编译时错误。因此我尝试注解掉@Mapping注解。它已编译,但它将所有属性Map为null。MapStructEntityMapper生成的实现:
public class MapStructEntityMapper implements EntityMapper {
public MapStructEntityMapper() {
}
public Entity map(EntityDto dto) {
if (dto == null) {
return null;
} else {
Entity entity = new Entity();
return entity;
}
}
public EntityDto map(Entity entity) {
if (entity == null) {
return null;
} else {
EntityDto entityDto = new EntityDto();
return entityDto;
}
}
}
我找到了一些关于注解处理器的答案,但请查看我的build. gradle文件:
// MapStruct - Entity-DTO mapper
implementation 'org.mapstruct:mapstruct:1.4.1.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.
compile 'org.projectlombok:lombok-mapstruct-binding:0.1.0'
// Util
// lombok
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
testCompileOnly 'org.projectlombok:lombok:1.18.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
有时候,如果我在编译时没有@Mapping注解,然后用这个注解运行,它会起作用,但现在即使这样也不起作用了。
2条答案
按热度按时间6yoyoihd1#
这似乎是
lombok-mapstruct-binding
的问题。它应该与处理器在同一个作用域中。您需要将其放在
annotationProcessor
下,而不是compile
下qlvxas9a2#
mapstruct的annotationProcessor应该在lombok的annotationProcessor之下。