
빌드 후

dist파일의

3개 폴더 1개 파일을

boot_20220406폴더의 resources/static/vue로 복사

1개 파일을

templates/vue 로 복사
boot_20220406폴더의 HomeController.java에 경로 설정

// 127.0.0.1:9090/ROOT/vue
@GetMapping(value ="/vue")
public String vueGET(){
// vue에서 build한 index.html파일의 위치
return "/vue/index";
}