个人申明: 本源代码摘自G4Studio开发平台,经个人修改,改良。
功能说明:做过J2EE开发的朋友, 在项目中,JS,CSS该如何压缩?
现在小编把自己的经验分享给大家,希望对大家有所帮助。 也欢迎大家纠正,改良。
下载地址:http://download.csdn.net/detail/w123456h19/5429231
使用方法: 1.把 ehcache-1.3.0.jar,fStudio-plathome-gzip.jar 引入到项目\lib目录,并引用jar文件。
2.把 global.resource.properties 拷贝到/WEB-INF/classes/目录下。
3.把以下内容拷贝到WebRoot\WEB-INF\web.xml中 <!-- 提供压缩和缓存的功能(建议在正式部署时打开) --> <filter> <filter-name>resourceFilter</filter-name> <filter-class>org.fstudio.platform.code.resource.impl.ResourceFilter</filter-class> <init-param> <param-name>config</param-name> <param-value>/WEB-INF/classes/global.resource.properties</param-value> </init-param> </filter> <filter-mapping> <filter-name>resourceFilter</filter-name> <url-pattern>*.js</url-pattern> </filter-mapping> <filter-mapping> <filter-name>resourceFilter</filter-name> <url-pattern>*.css</url-pattern> </filter-mapping>
4.fStudio-plathome-src.zip 源码文件
注意: IE9下存在兼容性问题,小编是以IE7兼容模式加载解决这个问题的。
在index.html <HEAD>标签第一行中加入:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
截图:
|