Is it possible to transform javabeans with XSLT and JXPath?
Suppose I have a vanilla javabean: class Person { String firstName; String lastName; ... } Now suppose I want to transform this into another javabean: class Human { String name; ... } I'm currently using JXPath to help me transform one to the other: JXPathContext personContext = JXPathContext.newContext(person); JXPathCo...