본문 바로가기


프로젝트 하면서/홈페이지 만들기

vue프로젝트 배포 후 새로고침 404에러

by worldforest 2024. 6. 20.
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

@Controller
public class ErrorController implements org.springframework.boot.web.servlet.error.ErrorController{
    @GetMapping("/error")
    public String redirectRoot(){
        return "index.html";
    }
}

 

 

static/index.html에 있어서 경로 설정하려고 application.properties 수정했는데 오류나서

수정하다보니까 일단 된다.

 

 

나중에 다시 공부해서 정리해야지.

반응형

댓글