spring-boot 構建war包發佈應用程序

實現步驟

修改打包方式

        在pom.xml將打包方式改成<packaging>war</packaging>html

添加Tomcat依賴

        在pom.xml中添加Tomcat的依賴座標java

<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-tomcat</artifactId>
		</dependency>

    排除掉內置的tomcatweb

<!--Spring Boot依賴-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>

			<!-- 排除內置容器,排除內置容器導出成war包能夠讓外部容器運行spring-boot項目-->
			<exclusions>
				<exclusion>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter-tomcat</artifactId>
				</exclusion>
			</exclusions>

		</dependency>

修改啓動類

        將應用主類繼承SpringBootServletInitializer 從新父類的configure方法。spring

@SpringBootApplication
public class DemoApplication extends SpringBootServletInitializer{

	public static void main(String[] args) {
		SpringApplication.run(DemoApplication.class, args);
	}

	@Override
	protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
		return builder.sources(DemoApplication.class);
//		return super.configure(builder);
	}
}

 

部署

項目部署配置

在Tomcat的webapps外的任意文件夾建立一個文件夾放war解壓後的文件 例如:C:\wwwapache

最終目錄以下:tomcat

在TOMCAT_HOME/conf/ server.xml 文件找到 Host 標記,在其中添加以下子標記: app

<Context path="" docBase="C:\www\admin" reloadable="false" />

 Host 標記中的 appBase 屬性不要去修改,讓其爲默認值 "webapps"webapp

以上配置中的 Context 標記的 path 屬性必定要設置爲 "" 而不是 "/"ide

配置域名

假如已經申請了一個域名:www.tomcat.comspring-boot

在TOMCAT_HOME/conf/ server.xml 文件找到 Host 標記

<Host name="www.tomcat.com"  appBase="webapps"
            unpackWARs="true" autoDeploy="true">

  			<Context path="" docBase="C:\www\admin" reloadable="false" />

            

        <!-- SingleSignOn valve, share authentication between web applications
             Documentation at: /docs/config/valve.html -->
        <!--
        <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
        -->

        <!-- Access log processes all example.
             Documentation at: /docs/config/valve.html
             Note: The pattern used is equivalent to using pattern="common" -->
        <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
               prefix="localhost_access_log" suffix=".txt"
               pattern="%h %l %u %t &quot;%r&quot; %s %b" />

      </Host>

修改<Host name="域名">啓動tomcat 訪問http://www.tomcat.com:8080

訪問項目須要制定端口號是8080,如今設置tomcat爲80端口:

在TOMCAT_HOME/conf/ server.xml 文件找到 以下標記將8080修改成80

<Connector port="80" protocol="HTTP/1.1"
    connectionTimeout="20000"
    redirectPort="8443"
    URIEncoding="UTF-8" />

同時添加一個編碼屬性:URIEncoding="UTF-8"。重啓tomcat 後訪問:http://www.tomcat.com

相關文章
相關標籤/搜索