Spring Boot (十):打包部署
阿新 • • 發佈:2018-12-26
springboot 打包與部署
一、jar 包
進入命令列模式 ,不管linux 還是windows 都是一樣的
1、編譯
進入專案目錄,使用如下命令:
//命令打包(-Dmaven.test.skip=true 跳過測試)
mvn clean package -Dmaven.test.skip=true
2.執行
當前目錄的target 就有一個.jar 檔案
#啟動命令
nohub java -jar xxxx.jar >/dev/null 2>&1 &
二、war 包
1、修改package
(a)、修改包型別
<!-- <packaging>jar</packaging> -->
<packaging>war</packaging>
(b)、移除內建的tomcat外掛
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- 移除tomcat外掛 -->
<exclusions >
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 移除之後會報錯,加入下面的依賴 -->
<dependency>
<groupId >javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
2、修改啟動類
繼承SpringBootServletInitializer 類,重寫configure()方法
package top.lrshuai.blog;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;
import org.springframework.boot.web.servlet.ErrorPage;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.http.HttpStatus;
@SpringBootApplication
@MapperScan("top.lrshuai.blog.dao")
public class Application extends SpringBootServletInitializer{
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
// TODO Auto-generated method stub
// return super.configure(builder);
return builder.sources(this.getClass());
}
}
3、編譯
(a)、和編譯jar一樣,mvn clean package -Dmaven.test.skip=true
(b)、(還有一種,mvn clean install -Dmaven.test.skip=true
)
如果是eclipse 則不用mvn
4、部署
放入tomcat 的webapps 目錄下,啟動tomcat,搞定
三、可能出現的問題
(a)、就是靜態檔案資源 訪問404
解決方案:
所有連結都寫相對路徑,可能以前你這樣寫<link href="/css/blog.css" rel="stylesheet" >
就可以了,打包jar 我記得好像是沒問題的,但是war就出問題了
正解應該是 <link href="../static/css/blog.css" rel="stylesheet" th:href="@{/css/blog.css}">
(b)、另一種是js 的路徑,比如發ajax請求。路徑也會有問題
我的方案:
1、頁面頭部新增這行<meta name="_ctx" th:content="@{/}" />
2、js 獲取它的路徑,
<script type="text/javascript">
var _ctx = $("meta[name='_ctx']").attr("content");
_ctx = _ctx.substr(0, _ctx.length - 1);
</script>