Hi,
I am trying to follow this example to create a simple Spring application integrated with Hibernate:
http://www.vaannila.com/spring/spring-h ... ion-1.htmlThis example omits the database table schema for the USER table, and I am not sure how to represent the following String array value (USER_COMMUNITY column) in the MySQL database:
Code:
@Column(name="USER_COMMUNITY")
public String[] getCommunity() {
return community;
}
public void setCommunity(String[] community) {
this.community = community;
}