Java
iteye_15836
这个作者很懒,什么都没留下…
展开
-
什么是Id
最近从别人手里接过一个功能点,table的Id(long),居然是当前时间的毫秒数值与playerId做String拼接组成的,playerId是另一个Entity的Id(long)。 在测试阶段一直都没问题,但是上线之后就出问题了。 String newId = String.valueOf(playerId)+String.valueOf(System.currentTimeMillis(...原创 2011-09-17 09:44:58 · 163 阅读 · 0 评论 -
Exception
现在,应该很多Java项目的log,都用的log4j或者slf4j。 不知道大家注意,java自动生成的try-catch语句中,exception是怎么处理的。 try { //TODO ... } catch (Exception e) { e.printStackTrace(); } 这样的printStackTrace()是不会出现在log中的,不管...原创 2011-09-17 09:56:00 · 127 阅读 · 0 评论 -
eclipse安装maven插件
我一直习惯用myeclipse 现在用的myeclipse8.5自带maven插件 由于myeclipse占用内存太高 所以在做这个项目的时候我用eclipse 在网上下载了个最新版的eclipsejee - 先给eclipse安装maven插件 叫m2eclipse http://download.eclipse.org/technology/m2e/releases...原创 2011-10-20 12:19:42 · 74 阅读 · 0 评论 -
java环境变量配置
windows xp下配置JDK环境变量: 1.安装JDK,安装过程中可以自定义安装目录等信息,例如我们选择安装目录为D:/java/jdk1.5.0_08; 2.安装完成后,右击“我的电脑”,点击“属性”; 3.选择“高级”选项卡,点击“环境变量”; 4.在“系统变量”中,设置3项属性,JAVA_HOME,PATH,CLASSPATH(大小...原创 2011-10-20 12:37:30 · 85 阅读 · 0 评论 -
关于《Java解惑》“谜题52:合计数的玩笑”的引申讨论
static final class StaticCheck { static { getValue(); } private static int value; public StaticCheck() { super(); System.out.println("check value:" + getValue()); } ...2013-09-02 10:40:45 · 110 阅读 · 0 评论 -
Cannot search for artifact in Eclipse Kepler using m2e plugin
Windows > Preferences > Maven and check "Download repository index updates on startup". Restart and you're all fixed.原创 2013-10-21 09:44:11 · 104 阅读 · 0 评论 -
Intellij IDEA run shell base on BashSupport plugin
在Intellij IDEA中,通过插件BaseSupport允许shell脚本时候,发现中文处理的并不是很好。 shell脚本内容: #!/bin/sh java -jar ./mybatis-generator-core_libs/mybatis_generator.jar -configfile ./db/resources/userdata/account.xml -...2014-01-10 12:19:10 · 835 阅读 · 0 评论 -
Gson Streaming example
将object序列化到Json文件中 try { Gson gson = new Gson(); FileOutputStream outputStream = new FileOutputStream("bean.json"); outputStream.write(gson.toJson(bean...2014-01-13 11:30:30 · 129 阅读 · 0 评论