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 |
Tags
- insertion sort
- C programming
- Selection Sorting
- s
- stream
- 메모리구조
- 알기쉬운 알고리즘
- coding test
- Serialization
- C 언어 코딩 도장
- 윤성우 열혈자료구조
- list 컬렉션
- R
- buffer
- Stack
- JSON
- 윤성우의 열혈 자료구조
- 혼자 공부하는 C언어
- datastructure
- Algorithm
- 이스케이프 문자
- 이것이 자바다
- Graph
Archives
- Today
- Total
Engineering Note
[Spring-error] 본문
Error message
javax.servlet.ServletException: Circular view path [project]: would dispatch back to the current handler URL [/project] again. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, due to default view name generation.)
URL 패턴 매핑값과 String return 값이 같을 때 위 같은 에러가 발생할 수 있다.
아래처럼 'domain:8080/hello' url과 return 값 hello가 같을 경우가 예가 될 수 있다.
@Getmapping("hello")public String test(){ return "hello";}
'Server > Spring' 카테고리의 다른 글
Comments