Dear.
I've installed the JBoss 4.0.4 GA with EJB3 with installer.
There is an bug with dealing with @Lob annotation column in the Mysql 4.1.4.
The column datatype is text in the mysql, so I've use @Lob annotation.
If the column data has I18N character(Korean for me), the column datas are
cutting
Thanks.
I did Lazy annotation in the relationship as below.
| @OneToMany(fetch = FetchType.LAZY, mappedBy = "parentBoard")
| public Collection getChildBoards() {
| return childBoards;
| }
|
| public void setChildBoards(Collection childBoards) {
|
Dear.
When I need not get the children collection, there is occurred the
LazyInitializationException.
Board has recursive relationship.
I want to get the Board data only as one object and his children object, but
there are many recursive relationship object.
There has grandchildren object with
Thanks a lot. Gavin and sbryzak2.
It works and run very well with I18N.
Have a nice day!!
# Ritchie
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3949778#3949778
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3949778
"sbryzak2" wrote : I didn't get very far. Anyway, I've checked in some changes
to CVS which should improve how international characters are handled. I'd be
great if you could give this a try and let me know if it works for you.
There is an error running the remote/seam-hello example as below
W
Dear.
I'm learning the Seam Framework following example.
There is an error doing remote/helloworld example.
When returning the I18N characters, the characters is broken.
When the server send the I18N characters to client(browser) , how should I
configure to get the normal characters.
Regards.
Dear
I was using TableGenerator as below
| @TableGenerator(name = "IdGen",
| table = "ID_GENERATOR",
| pkColumnName = "ID_NO",
| pkColumnValue = "1",
| valueColumnName = "NEXT_VALUE",
|
Dear
I was using TableGenerator as below
| @TableGenerator(name = "IdGen",
| table = "ID_GENERATOR",
| pkColumnName = "ID_NO",
| pkColumnValue = "1",
| valueColumnName = "NE