標籤:har pre pat ssi 比較 XML asc mave 升級
WebJars是將這些通用的Web前端資源打包成Java的Jar包,然後藉助Maven工具對其管理,保證這些Web資源版本唯一性,升級也比較容易。關於webjars資源,有一個專門的網站http://www.webjars.org/,我們可以到這個網站上找到自己需要的資源,在自己的工程中添加入maven依賴,即可直接使用這些資源了
1. 使用
添加依賴
<dependency> <groupId>org.webjars</groupId> <artifactId>webjars-locator</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>bootstrap</artifactId> <version>2.1.1</version> </dependency>
2. 打包:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.2</version> <configuration> <failOnMissingWebXml>false</failOnMissingWebXml> </configuration> </plugin>
3. 引用
a.靜態頁面:
<link rel=‘stylesheet‘ href=‘webjars/bootstrap/2.1.1/css/bootstrap.min.css‘> <script type=‘text/javascript‘ src=‘webjars/jquery/1.8.2/jquery.min.js‘></script> <script type=‘text/javascript‘ src=‘webjars/bootstrap/2.1.1/js/bootstrap.min.js‘></script> <script type=‘text/javascript‘ src=‘webjars/ajax-form/2.1.3/ajax-form.js‘></script>
b.jsp
<link rel=‘stylesheet‘ href=‘<%= org.webjars.AssetLocator.getWebJarPath("css/bootstrap.min.css") %>‘> <script type=‘text/javascript‘ src=‘<%= org.webjars.AssetLocator.getWebJarPath("jquery.min.js") %>‘></script> <script type=‘text/javascript‘ src=‘<%= org.webjars.AssetLocator.getWebJarPath("js/bootstrap.min.js") %>‘></script> <script type=‘text/javascript‘ src=‘<%= org.webjars.AssetLocator.getWebJarPath("ajax-form.js") %>‘></script>
WebJars 進行 css js 資源檔管理