You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adding complete description how to call REST services from Vue.js to Spring Boot REST backend, including solution for SOP problems when developing with parallel webpack-dev-server and Spring Boot startet (different origins because of different ports)
Copy file name to clipboardexpand all lines: README.md
+126
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,132 @@ npm run dev
224
224
That´s it!
225
225
226
226
227
+
## HTTP calls from Vue.js to (Spring Boot) REST backend
228
+
229
+
Prior to Vue 2.0, there was a build in soultion (vue-resource). But from 2.0 on, 3rd party libraries are necessary. One of them is [Axios](https://github.com/mzabriskie/axios) - also see blog post https://alligator.io/vuejs/rest-api-axios/
230
+
231
+
```
232
+
npm install axios --save
233
+
```
234
+
235
+
Calling a REST service with Axios is simple. Go into the script area of your component, e.g. Hello.vue and add:
236
+
237
+
```
238
+
import axios from 'axios'
239
+
240
+
data () {
241
+
return {
242
+
response: [],
243
+
errors: []
244
+
}
245
+
},
246
+
247
+
callRestService () {
248
+
axios.get(`api/hello`)
249
+
.then(response => {
250
+
// JSON responses are automatically parsed.
251
+
this.response = response.data
252
+
})
253
+
.catch(e => {
254
+
this.errors.push(e)
255
+
})
256
+
}
257
+
}
258
+
```
259
+
260
+
In your template area you can now request a service call via calling `callRestService()` method and access `response` data:
261
+
262
+
```
263
+
<button class=”Search__button” @click="callRestService()">CALL Spring Boot REST backend service</button>
264
+
265
+
<h3>{{ response }}</h3>
266
+
```
267
+
268
+
### The problem with SOP
269
+
270
+
Single-Origin Policy (SOP) could be a problem, if we want to develop our app. Because the webpack-dev-server runs on http://localhost:8080 and our Spring Boot REST backend on http://localhost:8088.
271
+
272
+
We need to use Cross Origin Resource Sharing Protocol (CORS) to handle that (read more background info about CORS here https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS)
273
+
274
+
#### Enabling Axios CORS support
275
+
276
+
Create a central Axios configuration file called `http-commons.js`:
Here we allow requests to the base URL of our Spring Boot App on port 8088 to be accessable from 8080.
290
+
291
+
Now we could use this configuration inside our Components, e.g. in `Hello.vue`:
292
+
```
293
+
import {AXIOS} from './http-common'
294
+
295
+
export default {
296
+
name: 'hello',
297
+
298
+
data () {
299
+
return {
300
+
posts: [],
301
+
errors: []
302
+
}
303
+
},
304
+
methods: {
305
+
// Fetches posts when the component is created.
306
+
callRestService () {
307
+
AXIOS.get(`hello`)
308
+
.then(response => {
309
+
// JSON responses are automatically parsed.
310
+
this.posts = response.data
311
+
})
312
+
.catch(e => {
313
+
this.errors.push(e)
314
+
})
315
+
}
316
+
}
317
+
```
318
+
319
+
#### Enabling Spring Boot CORS support
320
+
321
+
Additionally, we need to configure our Spring Boot backend to answer with the appropriate CORS HTTP Headers in it´s responses (theres a good tutorial here: https://spring.io/guides/gs/rest-service-cors/). Therefore we add the annotation `@CrossOrigin` to our BackendController:
322
+
323
+
```
324
+
@CrossOrigin(origins = "http://localhost:8080")
325
+
@RequestMapping(path = "/hello")
326
+
public @ResponseBody String sayHello() {
327
+
LOG.info("GET called on /hello resource");
328
+
return HELLO_TEXT;
329
+
}
330
+
```
331
+
332
+
Now our Backend will responde CORS-enabled and accepts requests from 8080. But as this only enables CORS on one method, we have to repeatately add this annotation to all of our REST endpoints, which isn´t a nice style. We should use a global solution to allow access with CORS enabled to all of our REST resources. This could be done in the `SpringBootVuejsApplication.class`:
333
+
334
+
```
335
+
// Enable CORS globally
336
+
@Bean
337
+
public WebMvcConfigurer corsConfigurer() {
338
+
return new WebMvcConfigurerAdapter() {
339
+
@Override
340
+
public void addCorsMappings(CorsRegistry registry) {
0 commit comments