我想使用mapstruct
将String转换为枚举enum TestEnum {
NO("no");
String code;
TestEnum(String code) {
this.code = code
}
public String getCode() {
return code;
}
}
我有一个我从服务中获得的代码,我想将此代码转换为Enum如何通过mapstruct更简单的方式来实现
答案 0 :(得分:2)
这是一个带有抽象映射器的解决方案,但是如果你想要你可以用默认的方法或类转换它
@Mapper
public abstract class TestMapper {
abstract Source toSource(Target target);
abstract Target totarget(Source source);
String toString(TestEnum test){
return test.getCode();
}
TestEnum toEnum(String code){
for (TestEnum testEnum : TestEnum.values()) {
if(testEnum.equals(code)){
return testEnum;
}
}
return null;
}
}
public class Source {
String value;
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
public class Target {
TestEnum value;
public TestEnum getValue() {
return value;
}
public void setValue(TestEnum value) {
this.value = value;
}
}
答案 1 :(得分:1)
以下代码对我有用。
@Mappings({
@Mapping(source = "genderDTO.name", target = "genderName")
})
GenderRecord dtoTogenderRecord(GenderDTO genderDTO);
结果是:
@Override
public GenderRecord dtoTogenderRecord(GenderDTO genderDTO) {
if ( genderDTO == null ) {
return null;
}
GenderRecord genderRecord = new GenderRecord();
if ( genderDTO.getName() != null ) {
genderRecord.setGenderName( Enum.valueOf( GenderType.class, genderDTO.getName() ) );
}
return genderRecord;
}
我还在接口级别使用以下内容来确保空检查:
@Mapper(nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
答案 2 :(得分:0)
在许多情况下,代码和枚举标识符之间可能存在转换:
enum TestEnum {
NO("no"),
_42("42"),
MAYBE_YES("maybe yes");
public final String code;
public static TestEnum fromCode(String c) {
c = c.toUpperCase().replace(' ', '_'); // Space to underscore.
if (c.matches("\\d.*")) {
c = "_" + c; // Starting digit prefixed by underscore.
}
return TestEnum.valueOf(c);
}
TestEnum(String code) {
this.code = code
}
public String getCode() {
return code;
}
}
不再需要字段code
。
答案 3 :(得分:0)
MapStruct只调用“ setProperty(PropertyType)”函数,因此只需在设置器中使用多态性即可。
对于DTO:
✖ An error occurred when pushing the resources to the cloud
Resource is not in the state stackUpdateComplete
对于实体:
public void setStatus(String status) {
this.status = status;
}
public void setStatus(ProjectStatus status) {
this.status = status.toString();
}