java中的智能POJO转换

java中的智能POJO转换,java,spring,mapping,objectmapper,Java,Spring,Mapping,Objectmapper,是否有任何库,甚至更好的Springframework实用程序,允许在不手动编写映射程序的情况下进行智能双向映射 class A { private String xProp1; private String xProp2; private String yProp3; private String yProp4; } class B { private X x; private Y y; static class X { priva

是否有任何库,甚至更好的Springframework实用程序,允许在不手动编写映射程序的情况下进行智能双向映射

class A {
   private String xProp1;
   private String xProp2;  
   private String yProp3;
   private String yProp4;
}

class B {
   private X x;
   private Y y;

   static class X {
      private String prop1;
      private String prop2;
   }
   static class Y {
      private String prop3;
      private String prop4;
   }
}

是的,有很多:,,可能还有很多其他的。

我会从列表中删除推土机,因为其他的效率更高。(也可以添加Selma)