'dependencies.dependency.version' for org.testng:testng:jar is either LATEST or RELEASE

 

 

해결방법

 

 

 

 

 

 

참고 사이트 

https://blog.51cto.com/u_15077561/4401786

 

 

 

 

 

 

 

 

Settings 단축키: Ctrl + Alt + S

 

 

 

 

참고 사이트

https://jeunna.tistory.com/96

 

 

 

 

 

# 리액트 라우트 매핑 (Url 매핑)

 

@Controller
public class WebController {

    @GetMapping(value =  {"", "/notice","/list", "/introduce", "/smallbus", "/limousine", "/bigbus", "/request", "/search", "/search/my"})
    public String forward() {
        return "forward:/index.html";
    }
}

이런식으로 리액트 라우트 처리를한 url을 컨트롤러에서 처리해주는 로직을 작성해 준다.

 

 

 

참고 사이트 

https://mopil.tistory.com/m/59

 

 

+ Recent posts