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

冬子哥發表於2018-02-09

一、配置


 

思路是透過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

 

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

有可能就是你的一點打賞會讓我的部落格寫的更好:)

相關文章