[Vuejs]-Passing a key inside an http.get request so that Spring Boot will recognize it

0πŸ‘

βœ…

To get data as requestparam in springboot application, you can pass parameter in query by key-value pair.

getCurrentUser(userName){
        return http.get("/users?userName=testname");
}

Leave a comment