컨트롤러에서 return "index.html"; 에 제목과 같은 문구가 뜹니다
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class BasicController {
@GetMapping("/")
public String hello() {
return "index.html";
}
}
1. Thymeleaf 제거 후 다시 추가
2. static / tamplates 경로 확인
3. sdk 버전, 자바 버전 확인
4, 프로젝트 초기화
5. 리빌드
6. application.properties에서 기본 경로 수정 등등 해보았으나 해결되지 않습니다... 이유가 뭘까요
참고로 templeates 경로에 넣고 return "index.html" 대신 return "index" 하면 저 문구가 사라집니다