English 中文(简体)
Spring mvc: The what is the params separateor
原标题:Spring mvc: what is the params separator

我很想知道底部(@ActionMapping(params=......>);

I d like to place a back button inside a form which already has a next button, and I ve read in the docs that I can do: myParam!=myValue to ignore things so I would like to do sonething like:

@ActionMapping(params="myAction=registerUser**SEPARATOR**nextParam!=previous"){}

@ActionMapping(params="nextParam=previous"){}
最佳回答

@ActionMapping(params = {"myAction=registerUser", "nextParam!=previous"})
问题回答

暂无回答




相关问题
multi-staged form using spring

please forgive me for this stupid questions. I just started developing web application using spring yesterday. The project that i worked on, have a multi staged form, that require users to complete ...

Rewrite spring-security redirect URLs

I m trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I ve got is that when spring-security notices that an anonymous user is trying to access a protected resource it ...

Spring Advice - submitting a form

I am having serious problems with code I have written with Spring so I have decided to start from scratch and ask for advice. Here are my requirements: When the page first loads I need a list of ...

How to implement Logout feature using Spring Web Mvc

I am new to Spring Web MVC.. Can I get some example or online link that shows me how to implement logout feature using spring web mvc ? I don t want to use the in built feature of spring security (i....

Exception thrown after processing onSubmitAction

I am very new to Spring and I have a simpleFormController with 2 methods. referenceData() with is called when the page loads and onSubmitAction() which is called on the submit of a form. I am ...

热门标签