`
jerryzxm
  • 浏览: 49123 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论
文章列表
1、安装libevent root@xxx:# tar vxzf libevent[-version].tar.gz root@xxx:# cd libevent[-version] root@xxx:# ./configure --prefix=/usr root@xxx:# make root@xxx:# make install     2、安装Memcached root@xxx:# tar vxzf memcached[-version].tar.gz root@xxx:# cd memcached[-version] root@xxx:# ./configu ...
关于jvm监控,java有jmx: java management extension ( java.lang.management )   http://www.ibm.com/developerworks/cn/java/j-lo-jse63/index.html http://www.jdon.com/concurrent/jmx.htm http://www.jdon.com/concurrent/jmx_dynamicbean.htm   http://docs.oracle.com/javase/tutorial/jmx/index.html http://www.o ...
    import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; //struts2 获取ServletContext ServletActionContext.getServletContext(); ServletContext application = getServletContext(); WebApplicationContext wac = We ...
今天拿别人的项目部署调试,出现如下问题   org.hibernate.exception.SQLGrammarException: Cannot open connection ... root cause com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown character set: 'utf8mb4'   google吧,有说创建数据库就要指定字符集的   CREATE DATABASE `test1` DEFAULT CHARACTER SET utf8 COLLATE utf8 ...
参考:   http://javarepo.blogspot.com/2011/02/using-jasper-templates-inside-maven.html 要翻过那堵墙   http://maven.apache.org/plugins/maven-resources-plugin/examples/binaries-filtering.html   ireport做的报表编译为jasper文件,maven package成war后部署过去,访问产生错误:   net.sf.jasperreports.engine.JRException: Error loadi ...
javascript方法: JSON.stringify(jsonObj), 将JSON对象转为字符串     项目中需要将复杂的对象从前端传到后端, 通过struts2的拦截器, 直接转换注入到action的属性中 比如 private List<Bean> test;   当然可以将data写成:   { "test[0].note":"note a", "test[0].username":"username a", "test[1].note":" ...

maven资源过滤

使用maven-->build-->resources-->resource-->filtering = true ,过滤资源文件,替换资源文件中${propertyName}的部分,可以配合maven profile使用   pom.xml     <build> <finalName>xxx-core</finalName> <resources> <resource> <filtering>true</filtering> <dire ...
    参考: http://blog.csdn.net/waixin/article/details/6551457   org.springframework.transaction.UnexpectedRollbackException: Transaction has been rolled back because it has been marked as rollback   解决:   1. 在transactionManager中添加 globalRollbackOnParticipationFailure = false, 如下:   & ...
参考: http://zhidao.baidu.com/question/78317128   css 隐藏超出的文字   overflow:hidden; text-overflow:ellipsis; white-space:nowrap  
eclipse + wtp + m2eclipse   使用wtp自动部署的功能的时候, 会有scope的bug, scope取值test或者provided都会把相应的jar部署到/WEB-INF/lib下, 而命令行下mvn install产生war就没有这样的bug    bug: https://issues.sonatype.org/browse/MECLIPSEWTP-126   有提到要安装额外的插件: http://m2eclipse.sonatype.org/sites/m2e-extras/
参考: http://www.redredred.com.au/m2eclipse-and-wtp/   eclipse工程(with maven & wtp)在部署的时候, 所有通过maven配置的jar都没有复制过去, 需要在 .classpath文件中添加<attributes/>部分     <classpathentry exported="true" kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"> ...
在myeclipse reverse engineering生成 hbm.xml的时候, mysql的timestamp类型会被映射到java.sql.Timestamp, 需要自定义呢, 要改 customized type mapping, 添加自定义的mapping, 如果输入timestamp --> java.util.Date 会产生以下错误: org.hibernate.MappingException: jdbc-type: timestamp is not a known JDBC Type nor a valid number   结论是JDBC Ty ...
参考: http://blog.csdn.net/zhouyong0/archive/2010/12/20/6086426.aspx   jBPM4.4 执行 executionService.deleteProcessInstanceCascade(processInstanceId)时报以下错误   将hibernate.dialect 由 org.hibernate.dialect.MySQLDialect 改为 org.hibernate.dialect.MySQL5InnoDBDialect 即可   Caused by: com.mysql.jdbc.excepti ...
Choose archetype: 1: remote -> docbkx-quickstart-archetype (-) 2: remote -> multi (-) 3: remote -> simple (-) 4: remote -> apparat-archetype-asm (-) 5: remote -> apparat-archetype-tdsi (-) 6: remote -> gquery-archetype (-) 7: remote -> gquery-plugin-archetype (-) 8: re ...
  首先要吐槽的是 easyui竟然找不到未压缩的版本(1 也许它是藏在某个个几角旮旯; 2 压缩的版本想看懂? 大概你得在你脑袋上外接个CPU), 而且官方的文档简陋的不能再简陋了, 想实现个稍微复杂点的功能都费劲.   以下代码 获取记录数 页数 当前页,     var grid = $('#datagrid'); var options = grid.datagrid('getPager').data("pagination").options; var curr = options.pageNumber; var total = options.to ...
Global site tag (gtag.js) - Google Analytics