Results 1 to 1 of 1
Thread: JMapper Framework
- 02-22-2013, 01:48 PM #1
Member
- Join Date
- Feb 2013
- Posts
- 1
- Rep Power
- 0
JMapper Framework
JMapper Framework is a java bean to java bean mapper, allows you to perform the passage of data dinamically with annotations and / or XML.
With JMapper you can:
- create and enrich target objects
- apply a specific logic to the mapping
- automatically manage the XML file
- implement the 1 to N and N to 1 relationships
- implement explicit conversions
- apply inherited configurations
the most important feature is the ease of use
Configuration
UsageJava Code:class Destination{ class Source{ @JMap private String id; private String id; @JMap("sourceField") private String destinationField; private String sourceField; private String other; private String other; // getters and setters... // getters and setters... } }
ResultJava Code:Source source = new Source("id", "sourceField", "other"); JMapper mapper = new JMapper(Destination.class, Source.class); Destination destination = (Destination) mapper.getDestination(source);
for more info: jmapper-framework - Elegance, high performance and robustness all in one java bean mapper - Google Project HostingJava Code:destination ["id", "sourceField", null]
Similar Threads
-
Best PHP framework
By maya.zakry in forum Forum LobbyReplies: 3Last Post: 02-21-2013, 05:32 PM -
ASN.1 Framework
By kewlkeny in forum New To JavaReplies: 2Last Post: 12-28-2011, 08:51 PM -
ASN.1 Framework
By kewlkeny in forum New To JavaReplies: 3Last Post: 12-21-2011, 03:09 PM -
From jar 2 framework
By njitram in forum New To JavaReplies: 4Last Post: 06-09-2010, 10:06 PM -
NIO Framework 0.9.3
By JavaBean in forum Java SoftwareReplies: 0Last Post: 10-31-2007, 05:29 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks