ダウンロードはコチラです
主な変更点は以下の通りです
(メーリングリストより抜粋)
・同梱の GlassFish v2 UR2 が GlassFish v2.1 に変更
・08年12月、及び09年1月のパッチ取り込み
・JDK6 Update 12 やその他のバグ修正対応
詳細は上記リリース情報を参照してください
最後にいつも通りのスプラッシュです

今回、JDK6 Update 12 の不具合はじめ、多くのバグ修正が行われているようなので、バージョンアップすることをおすすめします
技術系メモBlogです


















<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<link wicket:id='stylesheet'/>
</head>
<body>
<span wicket:id='mainNavigation'/>
<!-- 追加分 -->
<span wicket:id="message1" >ダミー用メッセージ(実行時置換されます)</span>
<!-- 追加分 -->
</body>
</html>
public class HomePage extends BasePage {
public HomePage() {
// message1 に表示する文字列を追加
add(new Label("message1", "Hello World!"));
}
}
final AutoCompleteTextField field = new AutoCompleteTextField("countries", new Model("")) {
@Override
protected Iterator getChoices(String input) {
if(Strings.isEmpty(input)) {
return Collections.EMPTY_LIST.iterator();
}
List choices = new ArrayList(10);
Locale[] locales = Locale.getAvailableLocales();
for(Locale locale : locales) {
String country = locale.getDisplayCountry(Locale.US);
if(country.toUpperCase().startsWith(input.toUpperCase())) {
choices.add(country);
if(choices.size() == 10) {
break;
}
}
}
return choices.iterator();
}
}; public HomePage() {
add(new Label("message1", "Hello World!"));
add(field);
}
public class HomePage extends BasePage {
public HomePage() {
add(new Label("message1", "Hello World!"));
add(field);
}
final AutoCompleteTextField field = new AutoCompleteTextField("countries", new Model("")) {
@Override
protected Iterator getChoices(String input) {
if(Strings.isEmpty(input)) {
return Collections.EMPTY_LIST.iterator();
}
List choices = new ArrayList(10);
Locale[] locales = Locale.getAvailableLocales();
for(Locale locale : locales) {
String country = locale.getDisplayCountry(Locale.US);
if(country.toUpperCase().startsWith(input.toUpperCase())) {
choices.add(country);
if(choices.size() == 10) {
break;
}
}
}
return choices.iterator();
}
};
} <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<link wicket:id='stylesheet'/>
</head>
<body>
<span wicket:id='mainNavigation'/>
<span wicket:id="message1" >ダミー用メッセージ(実行時置換されます)</span>
<p/>
<!-- 追加分 -->
<input type="text" wicket:id="countries" size="50" />
<!-- 追加分 -->
</body>
</html>
