Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 Dozer 映射到对象集。
我有一种情况,我需要使用自定义转换器将字符串映射到 TypeA。
我将 TypeA 转换为 String 的方式取决于 TypeA 所属的 Object 的类型。
特别是 TypeA 有 2 个字段,我们可以称它们为prefix和postfix。有时我需要用空格、破折号或斜杠分割字符串。要拆分的字符在 TypeA 的父级中定义。
有没有办法在推土机中使用自定义转换器来做到这一点?我需要上链...
提前感谢您的帮助。
所以你应该将一个String映射到TypeA的父级。在您的 xml 文件中,要访问您将键入的“前缀”和“后缀”,parent.TypeA.prefix或parent.TypeA.postfix. 希望这可以帮助。
parent.TypeA.prefix
parent.TypeA.postfix