File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package kr.itn.itnhub.config;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
/**
* React 라우터 경로로 새로고침해도 index.html이 나가도록 한다.
* /api 와 확장자가 있는 정적 파일 요청은 여기로 오지 않는다.
*/
@Controller
public class SpaForwardController {
@GetMapping({"/", "/{path:[^\\.]*}"})
public String forward() {
return "forward:/index.html";
}
}