- 浏览: 33748 次
- 性别:
- 来自: 深圳
最新评论
文章列表
背景:
项目在一个super pom下,有多个平行module,在各级依赖中,有一个module 在 pom 中定义 package war,但是开发阶段,只需要其中的jar包来使用。如果一直使用其 war 包来开发调试,maven overlay 会占用较多时间。
于是新的需求就是:将这个module 同时打包 jar 和 war 并 intall 到本地 repository 中。开发阶段就用jar,部署用war。
解决思路 :
使用 maven-jar-plugin ,定义在 phase package 阶段同步打 jar 包;
然后在 maven install 时, ...
<!-- js压缩 -->
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<executions>
<execution>
<i ...
-moz-border-radius:5px;-webkit-border-radius:5px; border-radius:5px; -moz-box-shadow: 0 1px 4px #88A0C2; -webkit-box-shadow: 0 1px 4px #88A0C2; box-shadow: 0 1px 4px #88A0C2;
流程图
- 博客分类:
- javascript
js:
$(document).ready(function(){ //折线 DEMO //$("#1").insertBrokenLine({target : $("#0"), options:{arrows:'single'}}); $("#1").insertBrokenLine({target : $("#2"), options:{arrows:'single'}}); ...
流程组件
- 博客分类:
- javascript
http://www.jgraph.com/mxgraph.html
http://neyric.github.com/wireit/
http://chaoran.iteye.com/blog/619889
hibernate for eclipse3.5 - http://download.jboss.org/jbosstools/updates/stable/galileo
all jboss tools -->hibernate tools
导出excel2007-respose
- 博客分类:
- java
String fileName = FileNameUtils.generatorFileName(map);//转换为url时如果有空格会变为+,再转为%20,浏览器就会识别了fileName = URLEncoder.encode(fileName, "UTF-8").replaceAll("\\+", "%20");//导出设置response.setContentType("application/vnd.msexcel");response.addHeader("Content-Dispositi ...
var str = '[aa].[bb].[cc]';
var array = str.match(/\[(.*?)\]/ig);
array[0] = [aa];
array[1] = [bb];
array[2] = [cc];
通过在 '*'、 '+' 或 '?' 限定符后放置 '?',该表达式就从贪婪匹配转为了非贪婪或最小匹配。
$("#id").hover -->解决移入移出捕获问题
$("#id").click(function(event){event.stopPropagation()}) -->解决事件冒泡问题
$("#id").click(function(event){event.preventDefault()}) -->解决默认操作问题(如单击链接)
fusioncharts清理
- 博客分类:
- web前端问题
this.dataXML = null;this.fc.FusionChart = null;this.fc.dispose();delete this.fc.swfobject;this.fc.swfobject = null;delete this.fc;
1.定时刷新:<META HTTP-EQUIV="Refresh" content="10“ URL=”http://自己的URL">
如果不写URL,则刷新当前页面
2.用js手动刷新:
function refresh()
{
window.location.reload();
}
配置文件服务器
linux 为suse
前提条件
文件服务器主机上已创建服务器存储目录,根据规划,假设目录为“/home/fileserver”。
<!--替换文件-->
<replace file="${dest.dir}/bme/WEB-INF/classes/jdbc.properties"> <replacefilter token="@username@" value="${database.username}" /> <replacefilter token="@password@" value="${database.encryptpassword}" /> </ ...