If there is a jaxb object with the following:
@Persist
@ColumnMapping(columnName = "foo_bar")
protected String fooBar;
Is there a way to retrieve the column name 'foo_bar' in my Java code somehow using 'fooBar' without changing the jaxb object?
If there is a jaxb object with the following:
@Persist
@ColumnMapping(columnName = "foo_bar")
protected String fooBar;
Is there a way to retrieve the column name 'foo_bar' in my Java code somehow using 'fooBar' without changing the jaxb object?