Dozer 将描述映射到代码
我正在使用 Dozer 将来自 WebService 接口的 JAXB 对象映射到我的域对象。我的 JAXB 中的元素或属性之一是 String set/setLocation()。这将是对该位置的描述。我在后端需要的是获取该字符串并将其映射到将存储在我的数据库中的代码。我查看了 Dozer 网站和 junit 测试,但没有看到任何可以用作示例的内容。我希望我可以创建一些自定义设置器映射器来执行此操作,但我正在寻找一个可以开始的示例。任何帮助将不胜感激。
I am using Dozer to map my JAXB objects that come off a WebService interface to my domain objects. One of the elements or properties in my JAXB is a String set/setLocation(). This would be the description of the location. What I need in the backend is the to take that String and map it to a code which will be stored in my database. I've looked in the Dozer website and junit tests and I don't see anything that I can use as an example. I was hoping I could create some custom setter mapper to do this but I am looking for an example that I can start with. Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过一番调查,我找到了一种使用现场电平转换器解决问题的方法。
以下是感兴趣的人的 Dozer 文档:http://dozer.sourceforge.net/documentation/customconverter。 html
With a little investigation I found a way to resolve my problem with a field level converter.
Here is the Dozer documentation for those interested: http://dozer.sourceforge.net/documentation/customconverter.html