▶ Service 1 2 3 4 5 6 7 8 9 10 11 12 13 import com.gdu.myhome.dto.UserDto; public interface UserService { public void login(HttpServletRequest request, HttpServletResponse response) throws Exception; public String getNaverLoginURL(HttpServletRequest request) throws Exception; public String getNaverLoginAccessToken(HttpServletRequest request) throws Exception; public UserDto getNaverProfile(Strin..