1. 程式人生 > >spring boot + vue + element-ui全棧開發入門——前後端整合開發

spring boot + vue + element-ui全棧開發入門——前後端整合開發

www. 傳統 eap 博客 css 溝通 協調 highlight closed

一、配置


思路是通過node的跨域配置來調用spring boot的rest api。

技術分享圖片

修改config\index.js文件,設置跨域配置proxyTable:

  proxyTable: {
      ‘/api‘: {
        target: ‘http://localhost:18080/‘,
        changeOrigin: true,
        pathRewrite: {
          ‘^/api‘: ‘/‘
        }
      }
    }

  

完整的config\index.js代碼如下:

技術分享圖片
‘use strict‘
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.

const path = require(‘path‘)

module.exports = {
  dev: {

    // Paths
    assetsSubDirectory: ‘static‘,
    assetsPublicPath: ‘/‘,
    proxyTable: {
      ‘/api‘: {
        target: 
‘http://localhost:18080/‘, changeOrigin: true, pathRewrite: { ‘^/api‘: ‘/‘ } } }, // Various Dev Server settings host: ‘localhost‘, // can be overwritten by process.env.HOST port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: true, errorOverlay: true, notifyOnErrors: true, poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions- /** * Source Maps */ // https://webpack.js.org/configuration/devtool/#development devtool: ‘cheap-module-eval-source-map‘, // If you have problems debugging vue-files in devtools, // set this to false - it *may* help // https://vue-loader.vuejs.org/en/options.html#cachebusting cacheBusting: true, cssSourceMap: true }, build: { // Template for index.html index: path.resolve(__dirname, ‘../dist/index.html‘), // Paths assetsRoot: path.resolve(__dirname, ‘../dist‘), assetsSubDirectory: ‘static‘, assetsPublicPath: ‘/‘, /** * Source Maps */ productionSourceMap: true, // https://webpack.js.org/configuration/devtool/#production devtool: ‘#source-map‘, // Gzip off by default as many popular static hosts such as // Surge or Netlify already gzip all static assets for you. // Before setting to `true`, make sure to: // npm install --save-dev compression-webpack-plugin productionGzip: false, productionGzipExtensions: [‘js‘, ‘css‘], // Run the build command with an extra argument to // View the bundle analyzer report after build finishes: // `npm run build --report` // Set to `true` or `false` to always turn it on or off bundleAnalyzerReport: process.env.npm_config_report } }
config\index.js

回到src\main.js文件中,註釋掉mock.js的配置

//開發模式開啟mock.js
if (process.env.NODE_ENV === ‘development‘) {
  // require(‘./mock‘)
}

  

其他任何地方都不需要修改。

讓我們看看具體的效果:

技術分享圖片

觀察數據庫,發現已經保存到數據庫中了:

技術分享圖片

二、總結


上述過程無疑體現了前後端分離開發的便利性。

傳統方式是:作為前端開發者,必須等待後端程序員開發完畢之後才能做數據綁定,否則只能編寫假數據渲染到頁面上來模擬開發。等到後端開發完畢,又需要重新把頁面的假數據刪除,改用調用後端接口。這無疑增加了前端開發者的工作量。而且,當一方出現問題後,又需要協調工作才能把問題就解決。而這無疑也增加了溝通帶來的時間成本。

前後端分離方式是:前後端開發者一起定義好接口的規範,然後按照這個規範並行開發。前端開發者通過mock.js模擬並測試。後端開發者通過Unit Test來測試接口。當前後端都開發完畢後,只需要修改配置就可以了。避免了二次工作和重復性工作,而且也避免了需要等一方完成工作後自己再去工作的問題。

返回目錄

git代碼地址:https://github.com/carter659/spring-boot-vue-element.git

技術分享圖片

如果你覺得我的博客對你有幫助,可以給我點兒打賞,左側微信,右側支付寶。

有可能就是你的一點打賞會讓我的博客寫的更好:)

spring boot + vue + element-ui全棧開發入門——前後端整合開發