ollo
ollo

Reputation: 946

What is ActionMapping, RenderMapping?

I know its part of the spring framework, but i don't understand it. Where can learn more about spring framework, more specifically how webapps are built using these type of annotations.

Namely, right now i need to test a function, which is not called from anywhere in the source (that i can find using eclipse), but has the annotation ActionMapping, no idea how to test it, because i dont know where its called from.

Upvotes: 0

Views: 2332

Answers (1)

Sean Patrick Floyd
Sean Patrick Floyd

Reputation: 298838

@ActionMapping is part of the Spring MVC portlet framework, start there for reference. If you need to write unit or integration tests, have a look at the Spring testing guide, and at the section mock objects for the portlet api.

Upvotes: 2

Related Questions