Skip to content

Instantly share code, notes, and snippets.

@minikuma
Created January 8, 2019 02:19
Show Gist options
  • Save minikuma/0d3ffdbdc693d7638307069d6d200d41 to your computer and use it in GitHub Desktop.
Save minikuma/0d3ffdbdc693d7638307069d6d200d41 to your computer and use it in GitHub Desktop.
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Student {
private String id;
private String name;
}
@Controller
@RequestMapping("/")
public class StudentController {
@RequestMapping(value = "/student", method = RequestMethod.GET)
@ResponseBody
public String getStudent() {
Student s = new Student("minikuma", "jeaon");
return s.toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment