views:

193

answers:

1

Hi, How do i display non-validation errors in jsp with spring webflow.

Something equivalent to struts ActionErrors/

Thx

A: 

Spring Web Flow uses Spring MVC in the background. But adding messages manually to the MessageContext object which sits inside the RequestContext, we can display error messages on the screen. It's the same place where even the validation errors messages are stored.

easwar29