0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

struts2でAction間をforwardする際にActionMessageが引き継がれない

Posted at

struts 2.5.10.1 で
ActionからActionへフォワードした際に、
Action内に設定したパラメータは引き渡されるが
Action内で設定したActionMessageやActionErrorは引き渡されなかったので困った。
設定方法の備忘録。
struts.xmlに以下を追記で引き渡されるようになる。

struts.xml
<constant name="struts.xwork.chaining.copyErrors" value="true"/>
<constant name="struts.xwork.chaining.copyFieldErrors" value="true"/>
<constant name="struts.xwork.chaining.copyMessages" value="true"/>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?