This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes EJB and other Java EE Technologies and the fly likes Increase text filed size  useing Annotations in ejb3.0 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » EJB and other Java EE Technologies
Reply Bookmark "Increase text filed size  useing Annotations in ejb3.0" Watch "Increase text filed size  useing Annotations in ejb3.0" New topic
Author

Increase text filed size useing Annotations in ejb3.0

seshagiri veerla
Greenhorn

Joined: Mar 15, 2008
Posts: 16
I have implemented abstraction layer.
@Entity
@Table(name = "teamwikis")
public class TeamWiki implements Serializable {
/** The text of the TeamWiki */
private String wikiText;
/**
* @return the wikiText
*/
@NotNull
@Length
@Max
public String getWikiText() {
return wikiText;
}

/**
* @param wikiText
* the wikiText to set
*/
public void setWikiText(String wikiText) {
this.wikiText = wikiText;
}
}


see above code.
i want to increasing field size max 2000 for text. but can not increasing max size even using @Length or @Max also.it is access upto 255 char only(it is String).

Please give me solution how to increasing size for text field.

Thanks
Seshagiri
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Increase text filed size useing Annotations in ejb3.0
 
Similar Threads
"hibernate.hbm2ddl.auto">create - to generate DB Tables
making a class visible
Need to limit the text
Reg. Validatin JTextFields
Trimming a blank String