작성
·
338
0
7강에서
@GetMapping("hello-api")
@ResponseBody
public Hello HelloApi(@RequestParam("name") String name){
Hello hello = new Hello();
hello.setName(name);
return hello;
}
static class Hello{
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
코드 중 궁금한 사항이 있어 문의드립니다.
static inner class를 쓰는 이유 알 수 있을까요??
그냥 innerclass와 접근 범위가 다르다는 것밖에 이해가 어려워서 조금만 더 잘 알고 싶습니다.