오늘의 학습키워드🔥
▸ 코드 카타
▸ if문 실행
▸ 2차원 배열의 길이
▸ Character.isDigit()
▸ API
▸ Apache Tomcat
🎥 오늘의 회고
📍2차원 배열 생성
📍2차원 배열 길이
[예시]
public class Main {
public static void main(String[] args) {
char ch1 = '5';
char ch2 = 'A';
// isDigit 메소드를 사용하여 문자가 숫자인지 확인
boolean isDigit1 = Character.isDigit(ch1);📍
boolean isDigit2 = Character.isDigit(ch2);📍
// 결과 출력
System.out.println(ch1 + " is a digit: " + isDigit1);
System.out.println(ch2 + " is a digit: " + isDigit2);
}
}
[결과]
5 is a digit: true
A is a digit: false
📍API란?
📍인터페이스
📍RESTful API란?
📍생애 첫 API 구현
package com.sparta.springprepare.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloContoroller {
@GetMapping("/api/hello")
public String hello(){
return "Hello World!";
} //하나의 api
}
📍Web Server
📍웹 서버의 역할
1. 정적인 콘텐츠✓(이미 완성이 되어있는 HTML과 같은 문서)를 브라우저로 전달
2. 브라우저로부터 '로그인하여 MyPage를 요청'과 같은 동적인 요청✓이 들어왔을 때 웹 서버 자체적으로 처리하기 어렵기 때문에 해당 요청을 WAS✓에 전달
📍Apache Tomcat이란?
오늘은 드디어 스프링 주차에 들어갔다. 뭔가 무섭지만 한달동안 잘 배우고자 한다.