stackoverflow.com/questions/39643960/whats-the-difference-between-javax-persistence-id-and-org-springframework-data What's the difference between javax.persistence.Id and org.springframework.data.annotation.Id? I'd be interested whether there is the difference between javax.persistence.Id and org.springframework.data.annotation.Id. If Spring has created that annotation only for support the JPA a..
(Client(browser) Server(Spring)와 연동되어야 하는 상황에서 spring boot를 통해서 GET method를 통해서 object list를 보내고 싶거나, 복잡한 object를 보내고 싶을 수도 있다. 보통은 POST를 통해서 JSON을 보내지만, 상황에 따라 요청은 있을 수 있다. 하지만 GET method를 통해서 해야 된다면 다음과 같은 방법으로 해결할 수 있다. qs library + regular expression 1. Query String library로 원하는 object를 변환https://github.com/ljharb/qs 2. 변환된 object에서 spring이 해석하지 못하는 부분을 변경 axios.get( url, { params: param, pa..