0

データベースで変更があった場合、UI でデータを更新するにはどうすればよいですか? 友人がクリップボードに何かを公開したときに Facebook が行うように (一般的なデータベース ビューアーを使用して) データベースのレコードを変更すると、UI が自動的にデータを更新するようにしたい

4

1 に答える 1

0

ポーリングまたはプッシュを使用できます。

プッシュするには、SelectorComposer を拡張して zul に適用できます

public class ComposerPush extends SelectorComposer<Component>  {

    private static final long serialVersionUID = 1L;
// wire components
@Wire
ZHighCharts chartComp;

// Basic Line
private SimpleExtXYModel dataChartModel = new SimpleExtXYModel();


 public void startWorker() {
            final Desktop desktop = Executions.getCurrent().getDesktop();
            if (desktop.isServerPushEnabled()) {
            } else {
                desktop.enableServerPush(true);
                if(timer != null)timer.cancel();
                timer = new Timer();
                timer.schedule(databaseCheck(), 0, 5000);
            }
        }

    private TimerTask databaseCheck() { 
            return new TimerTask() {
                @Override
                public void run() {
                    updateInfo();
                }
            };
        }

        private void updateInfo() {
            try {
                 Desktop desktop = chartComp.getDesktop();
                if(desktop == null) {
                    timer.cancel();
                    return;
                }

                Executions.activate(desktop);
                try {

                          **<your code in here>**

                } finally {
                    Executions.deactivate(desktop);
                }
            } catch (DesktopUnavailableException ex) {
                System.out.println("Desktop currently unavailable");
                timer.cancel();
            } catch (InterruptedException e) {
                System.out.println("The server push thread interrupted");
                timer.cancel();
            }


        }
于 2013-10-21T14:58:43.600 に答える