Posts by Gabriel Rossini Martins • 21 points
2 posts
-
1
votes2
answers168
viewsA: Where to place comments and javadoc ? Model or Controller?
javadoc is not the most suitable tool to describe how to use the graphical interface application, if that’s what you’re trying to do. It serves for you to describe how to use the classes (and…
-
1
votes0
answers81
viewsQ: How to select a runtime class based on a Requestparam using Spring MVC?
Let’s say I have the following @Restcontroller in my code that uses Spring MVC: @RestController public class Exemplo { @RequestMapping(value = "exemplo", method = RequestMethod.GET) public…