I'm trying to create following annotation dynamically using javassist. I couldn't find a way to add array of annotations ({@JoinColumn, @JoinColumn}
) as a javassist annotation member. Any suggessions?
@ManyToOne
@JoinColumns({
@JoinColumn,
@JoinColumn
})
private Parent parent;
Here are some references to build simple annotations.
AnnotationAttribute
Dynamically Adding annotations
Annotations at runtime
Here I'm answering my own question.