4

在这里,该方法读取具有唯一 ID 且序列号不断增加的数据库,因为我是 java 初学者,我能否知道如何实现这种重复轮询并每次检查新传入消息。

/**
 * Method which defines polling of the database and also count the number of Queries
 * @return pojo collection
 * @throws Exception
 */
public List<KAMessage> fullPoll() throws Exception {
    Statement st = dbConnection.createStatement();  
    ResultSet rs = st.executeQuery("select * from msg_new_to_bde where ACTION = 804 order by SEQ DESC");
        List<KAMessage> pojoCol = new ArrayList<KAMessage>();
        while (rs.next()) {
            KAMessage filedClass = convertRecordsetToPojo(rs);
            pojoCol.add(filedClass);
        }

        return pojoCol;
        }


/**
 * Converts a provided record-set to a {@link KAMessage}.
 * 
 * The following attributes are copied from record-set to pojo:
 * 
 * <ul>
 * <li>SEQ</li>
 * <li>TABLENAME</li>
 * <li>ENTRYTIME</li>
 * <li>STATUS</li>
 * </ul>
 * 
 * @param rs
 * @return the converted pojo class object
 * @throws SQLException
 *     
 */
private KAMessage convertRecordsetToPojo(ResultSet rs) throws SQLException {

    KAMessage msg = new KAMessage();
    int sequence = rs.getInt("SEQ");
    msg.setSequence(sequence);
    int action = rs.getInt("ACTION");
    msg.setAction(action);
    String tablename = rs.getString("TABLENAME");
    msg.setTableName(tablename);
    Timestamp entrytime = rs.getTimestamp("ENTRYTIME");
    Date entryTime = new Date(entrytime.getTime());
    msg.setEntryTime(entryTime);
    Timestamp processingtime = rs.getTimestamp("PROCESSINGTIME");
    if (processingtime != null) {
        Date processingTime = new Date(processingtime.getTime());
        msg.setProcessingTime(processingTime);
    }
    String keyInfo1 = rs.getString("KEYINFO1");
    msg.setKeyInfo1(keyInfo1);
    String keyInfo2 = rs.getString("KEYINFO2");
    msg.setKeyInfo2(keyInfo2);
    return msg;
    }
      }

这是我尝试过的:

       while(true){
        try {

           incomingMessages.addAll(fullPoll());
       System.out.println("waiting 6 seconds");
           //perform this operation in a loop
           Thread.sleep(6000);
           } 
           catch (InterruptedException e)
           {
        // TODO Auto-generated catch block
         e.printStackTrace();
        }
            catch (Exception e) 
            {
        // TODO Auto-generated catch block
        e.printStackTrace();                               
           }

如何使用准备好的语句将参数传递到此代码的查询中。

public List<KAMessage> fullPoll() throws Exception {
            PreparedStatement oldSeq = null;
    PreparedStatement newSeq = null;
    Statement st = dbConnection.createStatement();
    System.out.println("Polling");
    String query = "select * from msg_new_to_bde where ACTION = 804 and SEQ between           oldSeq and newSeq order by SEQ DESC";// insert in table
    pstmt = conn.prepareStatement(query);
 }
4

2 回答 2

2

实现重复轮询可能有多种方法,我能想到的最简单的方法是将轮询方法放在一段时间内,例如 thread.sleep:

    while(true){
        fullPoll();
        Thread.sleep(10000);
     }

不要忘记使用 try catch,因为您抛出了异常。或者,您可以使用诸如计时器任务或框架之类的东西作为石英。

为了检查数据库中是否有新数据,我可以即时考虑以下方法(可以有更优化的方法):

您可以记录行数,以了解是否添加了其他行,以便重新运行查询。

这不包括删除和重新插入行的情况,为了涵盖这一点,您可以尝试将上次查询数据库时使用的最大 id 存储在某处,并每次检查新的最大 id 是否与上一次不同记住,如果是,则数据库已更改。

例如,如果您将旧索引保留在变量 oldSeq 中,并将新索引保留在变量 newSeq 中,并且您只想获取新添加的消息,则可以使用以下查询:

select * from msg_new_to_bde where ACTION = 804 and SEQ between oldSeq and newSeq order by SEQ DESC

您应该检查您的数据库之间是否还包括测试值(oldSeq 和 newSeq)

于 2013-01-08T10:55:14.043 回答
1

您可以fullPoll()在 while 循环中调用您的方法并thread.sleep(<number of millis>)在调用之间等待。

另一种解决方案是使用成熟的调度程序框架,例如石英。

希望这能回答你的问题。

于 2013-01-08T10:44:58.093 回答