如何正确使用minify maven插件来缩小Angularjs应用程序中的js和css?

时间:2015-02-27 12:26:18

标签: javascript angularjs maven yui-compressor

我正在尝试使用samaxes minify maven plugin缩小我的angularjs应用中的javascripts和css文件。我能够得到所有的js&amp; css缩小并使用maven构建war文件,但在尝试打开app url时,我得到Error: [$injector:unpr] Unknown provider: aProvider <- a并且我的应用程序不起作用。

下面我提供我的pom插件配置

<plugin>
    <groupId>com.samaxes.maven</groupId>
    <artifactId>minify-maven-plugin</artifactId>
    <version>1.7.4</version>
    <executions>
        <execution>
            <id>min-js</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>minify</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <charset>UTF-8</charset>
        <skipMerge>true</skipMerge>
        <cssSourceDir>myapp/styles</cssSourceDir>
        <jsSourceDir>myapp/javascript</jsSourceDir>
        <jsEngine>CLOSURE</jsEngine>
        <closureLanguage>ECMASCRIPT5</closureLanguage>
        <closureAngularPass>true</closureAngularPass>
        <nosuffix>true</nosuffix>
        <webappTargetDir>${project.build.directory}/minify</webappTargetDir>
        <cssSourceIncludes>
            <cssSourceInclude>**/*.css</cssSourceInclude>
        </cssSourceIncludes>
        <cssSourceExcludes>
            <cssSourceExclude>**/*.min.css</cssSourceExclude>
        </cssSourceExcludes>
        <jsSourceIncludes>
            <jsSourceInclude>**/*.js</jsSourceInclude>
        </jsSourceIncludes>
        <jsSourceExcludes>
            <jsSourceExclude>**/*.min.js</jsSourceExclude>
        </jsSourceExcludes>
    </configuration>

</plugin>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.4</version>
    <configuration>
        <webResources>
            <resource>
                <directory>${project.build.directory}/minify</directory>
            </resource>
        </webResources>
    </configuration>
</plugin>

目录结构

enter image description here

我的控制器结构

'use strict';

angular.module('myApp').controller('MyController', function($scope, $filter, $location, $interval, ngTableParams, $modal, $transition, myService, $timeout) {
   ...
});

Chrome控制台错误

enter image description here

samaxes minify maven plugin是否支持缩小angularjs应用程序或我是否需要使用其他任何替代方案?

请帮助我在我的angularjs app中缩小js和css。

2 个答案:

答案 0 :(得分:3)

你走在正确的轨道上。

请注意,当您缩小控制器的JavaScript代码时,其所有函数参数也将缩小,并且依赖项注入器将无法正确识别服务。

可以通过使用依赖项的名称来注释函数来克服这个问题,这些依赖项的名称是字符串,不会被缩小。有两种方法:

(1。)在控制器函数上创建一个$inject属性,该属性包含一个字符串数组。例如:

function MyController($scope, $filter, $location, $interval, ngTableParams, $modal, $transition, myService, $timeout) {...}
MyController.$inject = ['$scope', '$filter', '$location', '$interval', 'ngTableParams', '$modal', '$transition', 'myService', '$timeout'];

(2。)使用内联注释,而不是仅提供函数,而是提供数组。在你的情况下,它看起来像:

angular.module('myApp').controller('MyController', ['$scope', '$filter', '$location', '$interval', 'ngTableParams', '$modal', '$transition', 'myService', '$timeout', function($scope, $filter, $location, $interval, ngTableParams, $modal, $transition, myService, $timeout) {
   ...
}]);

有关详细信息,请查看此tutorial的“关于缩小的注意事项”部分。

答案 1 :(得分:1)

还要注意mvn中的保留字,比如&#39;然后&#39;并且&#39;赶上&#39;

$http.get('some.json').then(convertResponse).catch(throwError);

可能会改写为:

$http.get('some.json')['then'](convertResponse)['catch'](throwError);

希望有人能提供更好的解决方案,这看起来真的很讨厌。

更多关于Missing name after . operator YUI Compressor for socket.io js files