I re-post the issue here from jboss-seam forum. I have just begun to explore jboss-seam. I
read Yuan's book and seam docs. And I began to reverse-engineer my project dev
database. Seam-gen generates codes with few minor problems. I deployed the generated EAR
file to my jboss, Jboss complains that a field with char(2) should be varchar(2). The
code is generated with the JPA / Hibernate annotation as:
@Column(name = "firmware_image_type", nullable = false, length = 2)
@NotNull
@Length(max = 2)
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
What would I do to overcome this problem without to alter the datatype on the column type
to varchar(2)
-B
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094322#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...