토비의 스프링 5.1 서비스 추상화
기존에 있던 C,R,U,D에 추가로 등급을 판별해주는 비즈니스 로직을 추가하려고 한다. USER 클래스에 추가적인 필드를 추가해준다. level, login, recommend 추가 public class User { public User(){} public User(String id, String name, String password, Level level, int login, int recommend) { this.id = id; this.name = name; this.password = password; this.level = level; this.login = login; this.recommend = recommend; } String id; String name; String passwor..