1

HttpInvokerリッチ クライアント GUI でSpring Framework を使用しています。インターネット接続に問題が発生し、インターネット接続の障害によってアプリケーションがクラッシュすることがあります。あきらめる前に、失敗したメソッドを数回再試行したいと思います。

これを達成するためにメソッドインターセプターを作成しようとしましたが、次の2番目の呼び出し:

Object result = methodInvocation.proceed();

常にRuntimeExceptionラッピング aで爆発しNullPointerExceptionます。

methodInvocation.proceed()このメソッドを複数回呼び出すことはできませんか、それとも何らかのトリックがありますか?

public class RetryConnectionTool implements MethodInterceptor
    {
    private static int FailureCount = 0;
    static Logger logger = Logger.getLogger(RetryConnectionTool.class);
    /**
     * 4 seconds of sleep
     */
    private int SleepTime = 4000;

    public RetryConnectionTool()
        {
        }

    public Object invoke(MethodInvocation methodInvocation) throws Throwable
        {
        return tryInvoke(methodInvocation, new Integer(0));
        }

    private Object tryInvoke(MethodInvocation methodInvocation, Integer tryCount)  throws Throwable
        {
        try
            {
            //if we have failed 10 times in the past or retried 3 times to no success shut it down
            if (FailureCount >= 10 || (tryCount != null && tryCount >= 3))
                {
                logger.error("internet issue failure " + methodInvocation.getMethod().toGenericString());
                System.exit(-1);
                return null;

                }
            if (tryCount != null && tryCount >= 1)
                {
                if (tryCount == 0)   //increment the failure count on every first retry
                    FailureCount++;
                tryCount++;
                Thread.sleep(SleepTime);
                }


            Object result = methodInvocation.proceed();

            //if we have tried more than once and there is already a record of a failure we try again
            if (tryCount != null && tryCount > 1 && FailureCount > 1)
                {
                String messagePassed = "There seems to be a problem with your internet connection.  It the problem persists Iridium Suite will be forced to close.\n" +
                        "Please evaluate your internet connectivity.";
                JOptionPane.showMessageDialog(null, messagePassed, "WARNING", JOptionPane.WARNING_MESSAGE);
                }
            return result;

            }
        catch (org.springframework.remoting.RemoteConnectFailureException x)
            {
            logger.error("internet issue " + methodInvocation.getMethod().toGenericString(), x);
            //retry on failure
            return tryInvoke(methodInvocation, tryCount);
            }
        catch (RemoteLookupFailureException x)
            {
            logger.error("internet issue " + methodInvocation.getMethod().toGenericString(), x);
            //retry on failure
            return tryInvoke(methodInvocation, tryCount);
            }
        catch (java.net.ConnectException x)
            {
            logger.error("internet issue " + methodInvocation.getMethod().toGenericString(), x);
            //retry on failure
            return tryInvoke(methodInvocation, tryCount);
            }
        catch (RuntimeException x)
            {
            throw x;
            }
        catch (Exception x)
            {
            throw x;
            }
        catch (Throwable x)
            {
            throw x;
            }

        }
    }
4

1 に答える 1