Day 개발 기록
Circular view path [test]: would dispatch back to the current handler URL. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, 오류 해결 본문
WebFramework/SpringBoot
Circular view path [test]: would dispatch back to the current handler URL. Check your ViewResolver setup! (Hint: This may be the result of an unspecified view, 오류 해결
데이25 2022. 10. 6. 10:451.
public void secuTest()
에서 @ResponseBody를 추가한다.
public @ResponseBody void secuTest()
SpringBoot에서 ViewResolver 에 대한 설정을 해줘야 하는데 하지 않아 생기는 오류이다.
2.
@Conroller 가 아니라 @RestController를 사용한다.
@RestController는 자체적으로 @Controller 및 @ResponseBody로 메타 주석이 추가 된 구성된 주석으로,
모든 메서드가 @ResponseBody 주석을 상속하여 응답 본문에 HTML 템플릿을 반환한다.
https://docs.spring.io/spring-framework/docs/current/reference/html/web.html#mvc-ann-controller
'WebFramework > SpringBoot' 카테고리의 다른 글
VO DTO 차이 (0) | 2021.05.06 |
---|---|
[스프링오류 해결] error: package org.junit.jupiter.api does not exist import org.junit (IntelliJ & gradle 로 Junit Test 오류날때) (2) | 2020.07.31 |
[강의] 스프링 IoC 컨테이너 (0) | 2020.01.13 |
[스프링오류 해결] Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package. (0) | 2019.11.14 |