您好,登錄后才能下訂單哦!
這篇文章主要介紹“jeecg-boot的war包怎么部署”,在日常操作中,相信很多人在jeecg-boot的war包怎么部署問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”jeecg-boot的war包怎么部署”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
一、后臺項目xxx-business-data-desk打war包
1.pom.xml文件中項目打包格式設(shè)置為war
<modelVersion>4.0.0</modelVersion><artifactId>uxh-business-module-system</artifactId><packaging>war</packaging>
2.pom.xml文件刪除插件spring-boot-maven-plugin
下面配置刪除
<build> <plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin> </plugins></build>
二、后臺項目xxx-business-data-desk部署tomcat
1.設(shè)置tomcat端口號80,設(shè)置編碼URLEncoding=“UTF-8”
2.部署項目到tomcat安裝目錄webapps/uxh_BusinessDataDesk下
完成之后通過 http://localhost:8080/uxh_BusinessDataDesk 可以訪問項目,提示token錯誤說明部署成功!
注意:tomcat解壓war后的目錄名稱即你訪問的根路徑,即這里的uxh_BusinessDataDesk
三、前臺項目uxh-xxx-vue build
1.修改public/index.html,這里需要將域名修改為自己的域名
//window._CONFIG['domianURL'] = 'http://127.0.0.1:8080/uxh_BusinessDataDesk'; //本地window._CONFIG['domianURL'] = 'http://bms.xxx.com:8080/uxh_BusinessDataDesk';//阿里云域名地址
2. 后臺接口服務(wù)項目名默認是jeecg-boot,如果需要個性haul可以修改src/utils/request.js中的baseURL參數(shù):
// 創(chuàng)建 axios 實例const service = axios.create({ baseURL: '/uxh_BusinessDataDesk', // api base_url timeout: 120000 // 請求超時時間})
3. build項目,使用build命令打包項目,build完成后臺會生成一個dist的目錄該目錄下極為build后的文件。
四、nginx配置(/usr/local/nginx/conf/nginx.conf)
nginx監(jiān)聽80端口
server { listen 80; server_name 你的域名; #后臺服務(wù)配置,配置了這個location便可以通過http://域名/jeecg-boot/xxxx 訪問 location ^~ /uxh_BusinessDataDesk{ proxy_pass http://127.0.0.1:8080/jeecg-boot/; proxy_set_header Host 127.0.0.1; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;} #解決Router(mode: 'history')模式下,刷新路由地址不能找到頁面的問題 location / { root html; index index.html index.htm;if (!-e $request_filename) { rewrite ^(.*)$ /index.html?s=$1 last;break;}}}
四、nginx開啟壓縮,提高首頁訪問效率(官網(wǎng)展示的前端項目nginx部署的時候加上gzip壓縮,加速第一次訪問 )
nginx.conf的http中加入以下片斷
# gzip config gzip on;gzip_min_length 1k;gzip_comp_level 9;gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;gzip_vary on;gzip_disable "MSIE [1-6]\.";
配置后啟動tomcat,啟動nginx
通過http://你的域名/ 訪問項目,出現(xiàn)如下頁面,使用賬戶/密碼:admin/123456 登錄成功即可!
到此,關(guān)于“jeecg-boot的war包怎么部署”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。