Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 코딩테스트준비
- Til
- 우선순위큐
- 트리
- BFS
- 네트워크 계층
- DFS
- 그래프
- 알고리즘
- lower bound
- DP
- 스프링
- 동적 프로그래밍
- 데이터베이스
- Spring
- 그리디
- 자바
- 완전탐색
- 그래프 이론
- 개발자취업
- 백트래킹
- 정렬
- BinarySearch
- 스프링 핵심 원리 - 기본편
- 99클럽
- Java
- 백준
- 브루트포스
- 프로그래머스
- 항해99
Archives
- Today
- Total
목록백엔드 (1)
AtraFelis's Develop Diary
[Spring] ResponseBody Annotation
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.*; @Controller public class basicController { @RequestMapping("/") public String hello() { return "index.html"; }}웹페이지에 접속하면 index.html 문서를 불러와 띄워주는 간단한 함수이다.당연히 index.html이라는 문서가 없는데 불러오려고 한다면,이런 오류 페이지가 나타난다. import org.springframework.stereotype.Controller; import org.spr..
Programming/Spring
2024. 5. 18. 00:19