전체 글(319)
-
Annotated Controllers[1]
[https://docs.spring.io/spring-framework/reference/web/webmvc/mvc-controller.html] Spring MVC는 @Controller와 @RestController 컴포넌트가 요청 매핑, 요청 입력, 예외 처리 등을 애노테이션을 통해 표현할 수 있는 애노테이션 기반 프로그래밍 모델을 제공합니다. 애노테이션 컨트롤러는 유연한 메서드 시그니처를 가지며, 기본 클래스를 확장하거나 특정 인터페이스를 구현할 필요가 없습니다. 다음은 애노테이션으로 정의된 컨트롤러의 예입니다:@Controllerpublic class HelloController { @GetMapping("/hello") public String handle(Model model) ..
2024.10.06 -
TDD
보호되어 있는 글입니다.
2024.08.07 -
Java Advanced Programming Quiz 문제
보호되어 있는 글입니다.
2024.07.23 -
Lesson: Exceptions
보호되어 있는 글입니다.
2024.07.14 -
Lesson: Arrays and Enumerated Types
보호되어 있는 글입니다.
2024.07.06 -
Lesson: Members[Constructors]
보호되어 있는 글입니다.
2024.07.06