[JBoss-user] [EJB 3.0] - There is a SERIOUS bug or error.

2006-06-12 Thread empty11
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

[JBoss-user] [EJB 3.0] - Re: don't want the LazyInitializationExceptoin

2006-06-11 Thread empty11
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) { |

[JBoss-user] [EJB 3.0] - don't want the LazyInitializationExceptoin

2006-06-11 Thread empty11
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

[JBoss-user] [JBoss Seam] - Re: Support for Internationalization

2006-06-08 Thread empty11
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

[JBoss-user] [JBoss Seam] - Re: Support for Internationalization

2006-06-07 Thread empty11
"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

[JBoss-user] [JBoss Seam] - Support for Internationalization

2006-06-06 Thread empty11
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.

[JBoss-user] [EJB 3.0] - Re: The pk value from TableGenerator(Again)

2006-03-28 Thread empty11
Dear I was using TableGenerator as below | @TableGenerator(name = "IdGen", | table = "ID_GENERATOR", | pkColumnName = "ID_NO", | pkColumnValue = "1", | valueColumnName = "NEXT_VALUE", |

[JBoss-user] [EJB 3.0] - The pk value from TableGenerator

2006-03-22 Thread empty11
Dear I was using TableGenerator as below | @TableGenerator(name = "IdGen", | table = "ID_GENERATOR", | pkColumnName = "ID_NO", | pkColumnValue = "1", | valueColumnName = "NE