有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

web应用程序的Java Oracle数据库更改通知问题

我使用以下代码注册和侦听Oracle数据库更改通知。当我将此代码作为独立java程序运行时,它运行良好。它正在接收来自数据库的通知,并按预期进行打印

  public class DBChangeNotification {
         
    static final String USERNAME = "XXX";
    static final String PASSWORD = "YYY";
    static String URL = "jdbc:oracle:thin:@xxxx:xxxx:xxxx";

    public static void main(String[] args) {
        DBChangeNotification demo = new DBChangeNotification();
        try {
            demo.run();
        } catch (SQLException mainSQLException) {
            mainSQLException.printStackTrace();
        }
    }
    
    public void run() throws SQLException {
        OracleConnection conn = connect();
        Properties prop = new Properties();
        prop.setProperty(OracleConnection.DCN_NOTIFY_ROWIDS, "true");
        prop.setProperty(OracleConnection.DCN_QUERY_CHANGE_NOTIFICATION, "true");
        prop.setProperty(OracleConnection.DCN_BEST_EFFORT, "true");

        DatabaseChangeRegistration dcr = conn.registerDatabaseChangeNotification(prop);
        try {
            // add the listenerr:
            DCNDemoListener list = new DCNDemoListener(this);
            dcr.addListener(list);

            // second step: add objects in the registration:
            Statement stmt = conn.createStatement();
            // associate the statement with the registration:
            ((OracleStatement) stmt).setDatabaseChangeRegistration(dcr);
            ResultSet rs = stmt.executeQuery("select * from xxxxxxxx where yyyy='zzzzz'");
            while (rs.next()) {
            }
            String[] tableNames = dcr.getTables();
            for (int i = 0; i < tableNames.length; i++) {
                System.out.println(tableNames[i] + " is part of the registration.");
            }
            rs.close();
            stmt.close();
        } catch (SQLException ex) {
            // if an exception occurs, we need to close the registration in order
            // to interrupt the thread otherwise it will be hanging around.
            if (conn != null) {
                conn.unregisterDatabaseChangeNotification(dcr);
            }
            ex.printStackTrace();
            throw ex;
        } finally {
            try {
                // Note that we close the connection!
                conn.close();
            } catch (Exception innerex) {
                innerex.printStackTrace();
            }
        }
    }
    /**
     * Creates a connection the database.
     */
    OracleConnection connect() throws SQLException {
        OracleDriver dr = new OracleDriver();
        Properties prop = new Properties();
        prop.setProperty("user", DBChangeNotification.USERNAME);
        prop.setProperty("password", DBChangeNotification.PASSWORD);
        return (OracleConnection) dr.connect(DBChangeNotification.URL, prop);
    }
}

/**
 * DCN listener: it prints out the event details in stdout.
 */
class DCNDemoListener implements DatabaseChangeListener {

    DBChangeNotification demo;
    DCNDemoListener(DBChangeNotification dem) {
        System.out.println("DCNDemoListener");
        demo = dem;
    }
    @Override
    public void onDatabaseChangeNotification(DatabaseChangeEvent e) {
        Thread t = Thread.currentThread();
        System.out.println("DCNDemoListener: got an event (" + this + " running on thread " + t + ")");
        System.out.println(e.toString());
        synchronized (demo) {
            demo.notify();
        }
    }
}

我的要求是在web应用程序中使用此功能。Web应用程序在服务器中启动时,必须侦听数据更改通知(可能在单独的线程上),并通过websocket客户端通知应用程序。我已经在servlet上下文侦听器的contextInitialized方法中添加了以下代码,以便在应用程序启动后立即启动

public class MyServletContextListener implements ServletContextListener {
 DBChangeNotification demo;
 
  @Override
  public void contextDestroyed(ServletContextEvent arg0) {
    //Notification that the servlet context is about to be shut down. 
  }

  @Override
  public void contextInitialized(ServletContextEvent arg0) {
      demo = new DBChangeNotification();
        try {
            demo.run();
        } catch (SQLException mainSQLException) {
            mainSQLException.printStackTrace();
        }
  }
}

当注册表中发生数据库更改事件时,我没有看到web应用程序收到任何通知。请帮我解决这个问题。我不知道这是不是一个正确的方法。。。。请建议除连续投票外的其他选择。我需要在收到来自数据库的通知后立即启动服务器中的某些内容。多谢各位


共 (1) 个答案