1. 程式人生 > 實用技巧 >maven-tomcat7-plugin 配置

maven-tomcat7-plugin 配置

2019獨角獸企業重金招聘Python工程師標準>>> hot3.png

Tomcat外掛配置:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat7-maven-plugin</artifactId>
            <version>2.2</version>
            <configuration>
                <path>/demo</path>
                <port>8080</port>
                <uriEncoding>UTF-8</uriEncoding>
            </configuration>
        </plugin>
    </plugins>
</build>

path---訪問應用的路徑~
port---tomcat的埠號~
uriEncoding---URL按UTF-8進行編碼,這樣就解決了中文引數亂碼~

103525_jQbQ_2919251.png

103638_sACP_2919251.png

103645_631h_2919251.png

轉載於:https://my.oschina.net/dslcode/blog/1616659