Reputation: 946
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
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