#Java - Code Snippets for '#@RequestMapping' - 1 code snippet(s) found
Sample 1. Controller in Spring MVC
@Controller
@RequestMapping("/employee")
public class EmployeeInfoController {
@RequestMapping(value = "", method = RequestMethod.GET)
public Model searchEmployeeInfo(Model model, @RequestParam("id") String employeeId) {
// body
}
}