SpringBoot集成vue的開發解決方案
最近由於工作要求:前端采用vue開發,後端采用springboot開發,前後端分離開發,最後前端頁面又整合到後端來。經歷多次采坑,總結以下方案:
vue build後的文件部署到springboot目錄
vue打包後,會生成dist目錄
springboot靜態資源目錄如下:
SpringBoot處理靜態資源和頁面,設置如下:
@Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); super.addResourceHandlers(registry); }
頁面模板設置,如下:
#頁面模板設置 spring.thymeleaf.option=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.mode=HTML5 spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.content-type=text/html spring.thymeleaf.cache=false
部署方案:
dist的index.html 直接放在templates目錄下
dist的css、fonts、img、js 直接放在static目錄下
vue打包後vendor文件過大的優化方案
vue使用vue-cli打包後,vendor就將vue.js其他引用的包一起壓縮打包進去,導致vendor文件超過1M,影響頁面加載速度
本項目使用瞭vue、vue-router、iview、axios、echarts等
(1)使用vue、vue-router、iview、axios、echarts等cnd引用
在index.html文件中,增加:
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script> <script src="https://unpkg.com/[email protected]/dist/vue-router.min.js"></script> <script src="https://unpkg.com/[email protected]/dist/iview.min.js"></script> <script src="https://unpkg.com/[email protected]/dist/axios.min.js"></script> <script src="https://unpkg.com/[email protected]/dist/echarts.min.js"></script>
(2)打包時,排除vue、vue-router、iview、axios、echarts等打包
在webpack.base.conf.js文件中,module.exports={…} 方法中添加
module.exports = { ... externals:{ 'vue':'Vue', 'axios':'axios', 'vue-router':'VueRouter', 'iview':'iview', 'echarts':'echarts', }, ... }
這裡有註意的是:命名問題
比如:vue-router的在https://unpkg.com/[email protected]/dist/vue-router.min.js中默認采用VueRouter,所以在import vue-router一定要使用VueRouter,而不能使用其他別名。
vue默認別名是Vue
axios默認別名是axios
vue-router默認別名是VueRouter
iview默認別名是iview
echarts默認別名是echarts
例子:
import Vue from 'vue' import VueRouter from 'vue-router' import iview from 'iview' import echarts from 'echarts' Vue.use(VueRouter) export default new VueRouter({ mode: 'history', ... })
(3)vue-router的路由頁面設置為按需加載
export default new VueRouter({ mode: 'history', routes: [ //頁面1 { path: '/Page1', name: 'page1', component: () => import('@/views/Page1.vue') }, //頁面2 { path: '/Page2', name: 'page2', component: () => import('@/views/Page2.vue') } ] });
(4)重新打包後vendor.js文件就小瞭,可以小到1k哦
vue-router使用瞭history模式,vue其實做的是單頁面應用,但是效果看上去是多個不同頁面,問題來瞭,部署到線上環境後,該如何配置?
百度上有很多處理方案,比如:使用errorPage方式處理,nginx配置等,這些問題比較繁瑣,而且在部署過程中,一堆問題。
經過多次嘗試,發現有一個最簡單方法,Controller直接url路徑配置到index.html即可,而且輕松解決history模式帶來的後端問題,如下:
@ApiOperation(value = "", hidden = true) @RequestMapping(path = "/Page1") public String page1() { return "index"; } @ApiOperation(value = "", hidden = true) @RequestMapping(path = "/Page2") public String page2() { return "index"; }
這種方案非常有利於後端開發人員做更多的進一步操作,比如:給每個頁面增加頁面權限等。
註意:該方案目前適用於前端頁面整合到後端的項目工程。
到此這篇關於SpringBoot集成vue的開發解決方案的文章就介紹到這瞭,更多相關SpringBoot集成vue內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!