SpringBoot將專案打成war包步驟解析

2022-10-04 06:39:10 字數 1910 閱讀 7219

1.修改pom.xml檔案

www.cppcns.com.org/xsd/m**en-4.0.0.xsd">

4.0.0

top.ytheng

springboot-demo

0.0.1

war

org.springframework.boot

spring-boot-starter-parent

2.0.5.release

utf-8

utf-8

1.8org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-test

testwww.cppcns.compe>

org.springframework.boot

spring-boot-starter-thymeleaf

org.springframework.boot

spring-boot-devtools

true

true

myspringboot

org.springframework.boot

spring-boot-m**en-plugin

m**en-compiler-plugin

1www.cppcns.com.8

1.82.新增控制器controller

package top.ytheng.demo.controller;

import org.springframework.stereotype.controller;

import org.springframework.web.bind.annotation.requestmapping;

import org.springframework.web.bind.annotation.responsebody;

@controller

@requestmapping("/file")

public class filecontroller

}3.新增啟動類

package top.ytheng.demo;

import org.springframework.boot.springapplication;

import org.springframework.boot.autoconfigure.springbootapplication;

import org.springframework.boot.builder.springapplicationbuilder;

import org.springframework.boot.web.servlet.support.springbootservletinitializer;

@springbootapplication

public class demoapplication extends springbootservletinitializer

public static void main(string args) throws exception

}4.右鍵專案依次執行run as -> m**en clean 和 m**en install,會在target目錄下生成war包

5.安裝tomcat(注意:專案裡面的埠和tomcat保持一致,建議為8080,否則到時訪問url會報錯)

將war包拷貝到的webapps目錄下面

啟動tomca,會自動將war包生成資料夾

6.訪問路徑

注意:訪問路徑要加上專案名稱

本文標題: springboot將專案打成war包步驟解析

本文位址:

將專案打成war包

2.修改 conf server.xml檔案.在host節點下增加如下參考 也許有些人還不懂war包是什麼,其實就是你的專案下的webroot資料夾中的內容 不加webroot這個資料夾 打成乙個壓縮包,字尾用war,其實和rar差不多,不過tomcat就認war。那為什麼war包可以講專案這個發布...

idea將專案打成war包

首先點選這裡進入專案的配置頁面 設定好名稱和輸出路徑。build on make選項可選可不選。如果選擇了,那麼每次在執行專案時都會生成war包。如果不勾選則可以在後續的步驟中手動生成war包。如果下面顯示.mf file not found in accept.war,那麼要繼續進行配置。很多教程...

Springboot 打成jar包靜態資源問題

在springboot中,特定的存放靜態資源的目錄有 這些資料夾的優先順序從上到下一次遞減,所以當有同名檔案時,後優先訪問resouces meta inf resouces最後訪問resouces public 當然也可以新增自己的靜態檔案目錄 在配置檔案中新增 spring.resources....