1. 程式人生 > >springboot釋出成jar並支援jsp

springboot釋出成jar並支援jsp

構建springboot專案之前,先得了解springboot的目錄結構


轉自:https://blog.csdn.net/kingboy190/article/details/78679467 

|-customer(專案名稱)
|  -  src
|  |  -  main
|  |  |  -  java
|  |  |  -  resources
|  |  |  |  -  static
|  |  |  |  -  public
|  |  -  test
|  |  |  -  java
|  - pom.xml
|  - customer.iml

- customer:是專案名稱;
- src/main/java:目錄下放置所有java檔案(原始碼檔案);
- src/main/resources:放置所有的配置檔案、頁面檔案、靜態資原始檔;
- src/main/resources/static:是靜態資原始檔目錄,在這個目錄中的所有檔案將可以被直接訪問,如果沒有這個資料夾可自行建立;
- src/main/resources/public:作用和src/main/resources/static目錄一樣。

配製檔案

springboot執行會自動載入resources下面名稱為application.properties配製檔案

server.port=9090 # 服務埠號
server.tomcat.uri-encoding=UTF-8 #以Tomcat為web容器時的字元編碼

spring.application.name=customer # 應用名稱,一般就是專案名稱,這個名稱在SpringCloud中比較關鍵
spring.profiles.active=dev #指定當前的活動配置檔案,主要用於多環境多配置檔案的應用中
spring.http.encoding.charset=UTF-8 #http請求的字元編碼
spring.http.multipart.max-file-size=10MB #設定檔案上傳時單個檔案的大小限制
spring.http.multipart.max-request-size=100MB #設定檔案上傳時總檔案大小限制

spring.thymeleaf.prefix=classpath:/templates/ #配置在使用Thymeleaf做頁面模板時的字首,即頁面所在路徑
spring.thymeleaf.suffix=.html #設定在使用Thymeleaf做頁面模板時的字尾
spring.thymeleaf.cache=false #設定在使用Thymeleaf做頁面模板時是否啟用快取

spring.mvc.static-path-pattern=/** #設定靜態資源的請求路徑
spring.resources.static-locations=classpath:/static/,classpath:/public/ #指定靜態資源的路徑

##以下是使用MySQL資料庫的配置
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect #指定資料庫方言
hibernate.show_sql=true #是否顯示sql語句
hibernate.hbm2dll.auto=update #設定使用Hibernate的自動建表方式
entitymanager.packagesToScan=com.zslin #設定自動掃描的包字首

spring.datasource.url=jdbc:mysql://localhost:3306/customer?\
useUnicode=true&characterEncoding=utf-8&useSSL=true&autoReconnect=true #資料庫連結
spring.datasource.username=root #資料庫使用者名稱
spring.datasource.password=123 #資料庫使用者對應的密碼
spring.datasource.driver-class-name=com.mysql.jdbc.Driver #資料庫驅動名稱

pom.xml配製

釋出成jar包,所以pom.xml中得描述:< packaging>jar< /packaging> 表示maven的package方式為jar。並需要新增jsp的支援及打包方式等等,以下我把我的pom.xml貼出來:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.vking.tspringboot</groupId>
    <artifactId>tspringboot</artifactId>
    <version>1.0-SNAPSHOT</version>
    <name>testSpringBoot</name>
    <packaging>jar</packaging>

    <!-- spring-boot的web啟動的jar包 -->
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.9.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>3.1.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.2</version>
            <scope>provided</scope>
        </dependency>
        <!--暴露各種指標-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-eureka</artifactId>
            <version>1.2.4.RELEASE</version>
        </dependency>
        <!--表示為web工程-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

    </dependencies>
    <!--maven的外掛-->
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <mainClass>com.vking.tspringboot.controller.SampleController</mainClass>
                </configuration>
                <version>1.4.2.RELEASE</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>

        </plugins>
        <resources>
            <!-- 打包時將jsp檔案拷貝到META-INF目錄下-->
            <resource>
                <!-- 指定resources外掛處理哪個目錄下的資原始檔 -->
                <directory>src/main/webapp</directory>
                <!--注意此次必須要放在此目錄下才能被訪問到-->
                <targetPath>META-INF/resources</targetPath>
                <includes>
                    <include>**/**</include>
                </includes>
            </resource>
            <resource>
                <directory>${project.basedir}/lib</directory>
                <targetPath>BOOT-INF/lib/</targetPath>
                <includes>
                    <include>**/*.jar</include>
                </includes>
            </resource>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/**</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>
</project>