Recent Posts
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
- preemption #
- PersistenceContext
- Spring Batch
- 겨울 부산
- 개성국밥
- 깡돼후
- 티스토리챌린지
- JanusWebRTCServer
- kotlin
- PytestPluginManager
- 달인막창
- 오블완
- vfr video
- mp4fpsmod
- JanusWebRTCGateway
- pytest
- JanusWebRTC
- taint
- 코루틴 빌더
- addhooks
- table not found
- terminal
- 자원부족
- JanusGateway
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- python
- Value too long for column
- 코루틴 컨텍스트
- VARCHAR (1)
- tolerated
Archives
너와 나의 스토리
[Spring] "This application has no explicit mapping for /error, so you are seeing this as a fallback." 문제 해결 본문
개발/Spring Boot
[Spring] "This application has no explicit mapping for /error, so you are seeing this as a fallback." 문제 해결
노는게제일좋아! 2020. 5. 5. 23:32반응형
Eclipse에서 다음과 같이 index.html을 만들고 main code를 실행하니
"This application has no explicit mapping for /error, so you are seeing this as a fallback." 에러 출력됨
해결책:
[src/main/resources] 하위에 있는 "application.properties"에 다음을 입력하면 문제 해결!
spring.mvc.view.prefix=/WEB-INF/jsp/
spring.mvc.view.suffix=.jsp
하지만 컨트롤러에 작성한 대로 "localhost:8080/hello"에 접근하니 똑같은 에러가 발생하였다.
해결책:
main code에 경로를 지정해주니 해결!
반응형
'개발 > Spring Boot' 카테고리의 다른 글
URL Design (0) | 2020.07.25 |
---|---|
[Spring security] "*.permitAll()"을 해도 post가 안된다면 (1) | 2020.07.17 |
import org.h2.server.web.WebServlet; 에러나는 경우 해결법 (0) | 2020.07.10 |
[Spring] Intellij - http로 json 데이터 전송 (0) | 2020.05.10 |
H2 - "Database "C:/Users/-/test" not found, either pre-create it or allow remote database creation (not recommended in secure environments) 문제 해결 (0) | 2020.05.10 |
Comments