开发者

Pass URL Parameter Spring Web Flow

开发者 https://www.devze.com 2022-12-09 10:26 出处:网络
I have this web application using Spring Web Flow framework. In my main page I have a default display of a list of employees. When I click a particular row I need to redirect to another page displayin

I have this web application using Spring Web Flow framework. In my main page I have a default display of a list of employees. When I click a particular row I need to redirect to another page displaying a detailed view of the row. I was thinking of passing the "name" field in my row through URL parameter.

Is开发者_开发问答 this possible or can Spring web flow support getting parameters from the URL?

<a href="edit.do?row_name=testName">name</a>


You can get your request parameters from the special EL variable requestParameters. See: http://static.springsource.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#el-variable-requestParameters

0

精彩评论

暂无评论...
验证码 换一张
取 消