今日チェックした記事(2012/01/19)

XMLHttpRequest Level 2 Draft Published
 XMLHttpRequest Level 2のドラフトが更新された。

String.valueOf(int) vs "" + int
 数値→文字列の変換で、String.valueOf(123)みたいにやる場合と""+123みたいにやる場合でどっちがいいかという実験。前者の方が若干パフォーマンスはいいが、プログラマの手間を削減するという点で後者も価値がある。

Java Garbage Collection Algorithm Design Choices And Metrics To Evaluate Garbage Collector Performance
 Java VMで使われているGCアルゴリズムのパフォーマンスについて。

JBoss Releases Hibernate 4.0
 Hibernate 4.0の主な新機能。

  • Multi-tenancy support
  • The introduction of the "Services" API
  • Better logging with i18n support and message codes (via JBoss Logging instead of slf4j)
  • Preparation for OSGI support
  • Several other cleanups/removal of deprecated code