クラスに次のコードがあります。処理すると、データベースの最新行にあるタグと同じ値を持つ xml が生成されます。オブジェクトを再初期化しようとしましたが、うまくいきません
while (tempResultSet.next()) {
conList = new ContentList();
conChannel = new ContentChannel();
conChannel.setType(String.valueOf(tempResultSet.getInt("Key")));
pubDate.setStart(tempResultSet.getTimestamp("PUBLISHSTARTDATETIME").toString());
conElement.setPubDate(pubDate);
conElement.setConChannel(conChannel);
conList.setConElement(conElement);
newConList.add(conList);
conList = null;
conChannel = null;
}