1

私の知る限り、Maven は変更されたファイルのみをコンパイルし、それらをターゲット フォルダーにコピーします。

私の webapp フォルダーには、サイズが800MBを超えるファイルがたくさんあります。

このコマンドを起動すると ( mvn package )。

すべてのリソースを target/icall/ にコピーするには、 10 分以上かかります。

[情報] webapp リソースのコピー [/data1/workspace/icall/src/main/webapp]

これは私をイライラさせます。

変更されたファイルまたは新しく生成されたファイルのみをコピーする方法はありますか??

<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.byto</groupId>
    <artifactId>icall</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>icall Maven Webapp</name>
    <url>http://maven.apache.org</url>

    <build>
        <finalName>icall</finalName>

        <resources>
            <resource>
                <directory>${basedir}/src/main/resources</directory>
                <filtering>true</filtering>
            </resource>
        </resources>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <escapeString>\</escapeString>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.7</version>
                <configuration>
                    <additionalProjectnatures>
                        <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                    </additionalProjectnatures>
                    <additionalBuildcommands>
                        <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                    </additionalBuildcommands>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                    <wtpversion>1.5</wtpversion>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>

        </plugins>
    </build>

    <profiles>
        <!-- Unrelated Profiles -->
    </profiles>

    <properties>
        <spring-version>3.1.1.RELEASE</spring-version>
        <tiles-version>2.2.2</tiles-version>
        <mybatis-version>3.1.1</mybatis-version>
    </properties>

    <dependencies>
         <!-- Lots of Unrelated Dependencies -->
    </dependencies>

</project>

これは、Package または Install ゴールの代わりに使用する Linux bash ファイルです。しかし、maven の主な機能である Dependency Management は使用できません。しかし、これはまだ私にとって良いことです。

#! /bin/sh

tomcat_path=/usr/local/tomcat
source_path=/data1/workspace/icall
deploy_path=/data1/icall_root

function refresh_source {
    # Update source from SVN
    echo -e "\n\n** Getting new sources from SVN." &&
    svn update &&

    # Compile *.java
    echo -e "\n\n** Building *.java with Maven." &&
    mvn compile -Pdev &&

    # Copy only modified files
    echo -e "\n\n** copying files from ${source_path}/src/main/webapp to ${deploy_path}." &&
    rsync -av --exclude=.svn --exclude=WEB-INF/lib/* --exclude=WEB-INF/classes/* --delete ${source_path}/src/main/webapp/* ${deploy_path}/ &&

    echo -e "\n\n** copying files from ${source_path}/library to ${deploy_path}/WEB-INF/lib." &&
    rsync -av --delete --delete-excluded ${source_path}/library/* ${deploy_path}/WEB-INF/lib/ &&

    echo -e "\n\n** copying files from ${source_path}/target/classes/ to ${deploy_path}/WEB-INF/classes/"
    rsync -av --checksum --delete --delete-excluded ${source_path}/target/classes/* ${deploy_path}/WEB-INF/classes/ &&

    ## Only for development server
    cp -f ${deploy_path}/info.jsp ${deploy_path}/data/info.jsp
}

function tomcat_restart {
        ${tomcat_path}/bin/shutdown.sh &&
        sleep 30 &&
        ${tomcat_path}/bin/startup.sh
}

case "$1" in
    restart)
        refresh_source &&
        tomcat_restart
        ;;
    log)
        tail -f ${tomcat_path}/logs/catalina.out
        ;;
    *)
        refresh_source
        ;;
esac
4

2 に答える 2

0

最終戦争で不要になったファイルを除外すると、ビルドが高速化されることがわかりました。この回答も参照してください https://stackoverflow.com/a/41452761/225341

于 2017-01-03T21:39:41.220 に答える