Display ActionMessage added from different action

2010-07-07 Thread Franz Wong
Hi, I am using Struts 2. I have a page which contains 2 forms. Each form corresponds to different Actions (Action B / C). The action adds ActionMessage and redirects back to the original page. I would like to display the ActionMessage in the form which triggered the Action. How do I perform this i

Strange behaviour on i18n

2010-07-10 Thread Franz Wong
Hi, I have an i18n web site with struts 2. I don't know why the i18n text is not loaded properly. I expect "檢索詞不能空白" (Chinese characters), but it turns out "檢索詞不不能空白". But if I make any change on the html (e.g. the order of attributes or remove some elements), the text is loaded without any proble

Parse url parameter

2010-07-28 Thread Franz Wong
Hi group, Suppose I have an URL with parameters (e.g. http://localhost:8080/myApp/action/myAction/user/name/Peter). I would like to map those parameters in the following way. class MyAction { private String searchType; // user private String searchMethod; // name private String searc

Clear ThreadLocal of ActionContext

2010-08-03 Thread Franz Wong
Hi, I would like to ask is there any mechanism clearing ThreadLocal of ActionContext by struts? As I know, there are some issues when ThreadLocal is used with thread pool. Reference : http://weblogs.java.net/blog/jjviana/archive/2010/06/09/dealing-glassfish-301-memory-leak-or-threadlocal-thread-p

Get i18n text problem

2010-08-08 Thread Franz Wong
Hi group, In the jsp page, I have a page scope variable "title". This variable stores the key of the resource bundle. I can print the value by <%= title %>. However, I am not able to use it with . I have tried or . But both of them do not work. Thanks. Franz

How do we repopulate controls when validation fails?

2010-08-11 Thread Franz Wong
Hi, I have read the documentation "How do we repopulate controls when validation fails" [1]. I tried the action tag solution. However, when there is a validation error, the execute method of the action in is not called. I don't choose the Preparable solution because the parameter required is not

Re: How do we repopulate controls when validation fails?

2010-08-12 Thread Franz Wong
Thanks. It solves my problem :) Franz On Wed, Aug 11, 2010 at 10:11 PM, Alex Rodriguez Lopez < alo...@flordeutopia.pt> wrote: > Don't know if this solves your problem, but maybe it helps to use the > params-prepare-params trick, calling params interceptor twice, so you have > your params ready b

Multiple field with same name

2010-08-12 Thread Franz Wong
Hi, I would like to show a list of user and enable the change of the name. I don't know if there is any mechanism which struts provided to do that. class User { private Long id; private String name; // getters and setters }

Re: Multiple field with same name

2010-08-13 Thread Franz Wong
eans-list-in-Dynamic-form-and-ParametersInterceptor-problem-td15016850.html On Fri, Aug 13, 2010 at 2:13 PM, Franz Wong wrote: > Hi, > > I would like to show a list of user and enable the change of the name. I > don't know if there is any mechanism which struts provided to do that

Re: Multiple field with same name

2010-08-14 Thread Franz Wong
I have solved the problem. The thread I referenced is correct. Franz On Fri, Aug 13, 2010 at 6:00 PM, Franz Wong wrote: > I found the "Type conversion" page from struts official web site and I > followed the "Advanced example for indexed Lists and Maps", but I cannot