Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does JPA support embedding a class attribute whose type is a parameterized generic or java.lang.Object? For example:

public class Foo<T>;
{
   private T      param1;
   private Object param2;
}

I have a use case where I have a class that "wraps" some arbitrary class (the generic T or java.lang.Object) via aggregation plus contains primitive types representing metadata about the wrapped object.

In this case, I'd like there to be DB tables for each of things being wrapped that also contain columns for the metadata. These metadata columns would be duplicated across all tables representing the wrapped embedded objects.

share|improve this question

1 Answer

I'd like there to be DB tables for each of things being wrapped that also contain columns for the metadata. These metadata columns would be duplicated across all tables representing the wrapped embedded objects.

You could maybe persist Object or T as a @Lob but I don't think that the above is possible, I don't see how you could express the mappings, how a JPA provider could be aware of the tables.

See also

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.