목록Spring (82)
충분히 쌓여가는
클래스 생성(YoilTeller) 년 월 일을 입력하면 해당 날짜가 어떤 요일인지 알려주는 프로그램 YoilTeller 클래스 package com.fastcampus.ch2; import java.util.Calendar; // 년월일을 입력하면 요일을 알려주는 프로그램 public class YoilTeller { public static void main(String[] args) { // 1. 입력 String year = args[0]; String month = args[1]; String day = args[2]; // 문자열이라서 숫자로 바꿈 int yyyy = Integer.parseInt(year); int mm = Integer.parseInt(month); int dd = Integ..
@Controller 어노테이션 원격 호출 가능한 프로그램으로 등록 @RequestMapping 어노테이션 URL과 메서드 연결(맵핑, mapping) home이라는 메서드가 호출됨package com.fastcampus.ch2; import java.text.DateFormat; import java.util.Date; import java.util.Locale; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.R..
STS3가 MAC M1칩에서 잘 되지않아 STS4를 설치 후 Spring Legacy Project를 실행시키려고 보니 Spring Legacy Project가 없다 Eclipse Marketplace에 들어가서 sts를 검색한다 Spring Tools 3 Add-On for Spring Tools 4 버전...RELEASE를 설치 오른쪽 하단에 Installing Software라고 %가 보임 웬만한건 다 동의하고 설치가 완료되면 Restart 선택 이상한 오류 발생 Help → Install new software → Contact all update sites during install to find required software 옵션 체크 해제 하루종일 방법을 찾아봤지만 Spring Legacy..
STS3말고 STS4를 설치해보겠다 현재 사용 중인 노트북은 맥북이고 m1칩을 사용 중이다 https://spring.io/tools Spring | Tools spring.io MACOS ARM_64 선택 SpringToolSuite4를 Applications로 이동 github에서 ch2.zip을 다운로드 https://github.com/castello/spring_basic/blob/main/download/ch2.zip STS4에서 Import projects 선택 Existing Projedts into Workspace 선택 후 Select archive file에서 다운 받은 ch2.zip 파일 선택 -> Finish 여기서 some projects cannot be imported bec..