2

Notes/Domino バージョン 7 以降、Bob Balaban の「Two headed beast」(http://bobzblog.com/tuxedoguy.nsf/dx/the-2-headed-beast-debugging-domino-java-agents-) の原則を使用しています。 with-eclipse) を使用して、デバッグ可能な Eclipse で Java エージェントを作成します。これは魅力のように機能します。唯一のことは、コードを Eclipse から標準の Notes エージェントにコピー/貼り付けする必要があったことです。

Domino Designer の現在の Eclipse バージョン (8.5.3 FP2) を使用して、同じセットアップを使用して、Domino Designer で (Java プログラムとして) エージェントを直接デバッグできるかどうかを確認しようとしました。コードを実行できるようですが、ブレークポイントで停止させることはできません。私が受け取るメッセージは次のとおりです。

行番号属性がないため、dk.domain.AgentTemplate にブレークポイントをインストールできません。コンパイラ オプションを変更して、行番号属性を生成します。

デバッグ構成を「メインで停止」に設定しようとしました。しかも止まるらしい。ただし、ステップオーバーすると、すべてのコードが実行されます。コード内のどこにいるのかわかりません。もちろん、変数もその値もわかりません。

[設定] - [Java] - [コンパイラ] で [生成されたクラス ファイルに行番号属性を追加する] オプションが選択されています。行番号を生成する他のコンパイラ オプションが見つかりませんでした。

Designer で Java 1.5 準拠を使用しています。

これ設定できた人いますか??

/ジョン

4

1 に答える 1

5

ええと、解決策を見つけるために問題を説明する必要がある場合があります。

問題を徹底的に説明する中で、JDK 1.6 コンパイラ準拠レベル (設定 - Java コンパイラの下) を使用しようとしました。そして、それは実際に機能しました!!!

したがって、このような構造を持つエージェントを構築すると、Domino Designer で Java エージェントを直接デバッグできます。

package dk.dalsgaarddata;

import lotus.domino.AgentBase;
import lotus.domino.AgentContext;
import lotus.domino.Database;
import lotus.domino.DocumentCollection;
import lotus.domino.NotesException;
import lotus.domino.NotesFactory;
import lotus.domino.NotesThread;
import lotus.domino.Session;
import dk.dalsgaarddata.debug.DebugAgentContext;

/*  ------------------------------------------------------------------------------------
    Created: 2009.04.21/Jda
    Revised: 2009.04.29/Jda - v.1.1

    Agent template.... 
    ------------------------------------------------------------------------------------ */

public class AgentTemplate extends AgentBase {
    // DEBUG: For Eclipse debugging - see main method at the end of this class.

    // Beginning of "ordinary" Lotus Notes/Domino Agent....
    private Session mySession = null;
    private AgentContext myContext = null;
    private DD_BackendLog myLog = null;

    private void cleanUp() {
        try {
            if (null != myLog)
                myLog.end();
            if (null != mySession)
                mySession.recycle();
        } catch (NotesException ne) {
            System.err.println("Error cleaning up log and Session.");
        }
    }

    // Lotus Notes/Domino entry point...
    public void NotesMain() {
        try {
            if (mySession == null) {
                mySession = getSession();
                myContext = mySession.getAgentContext();
            }
            SessionContext.getInstance(mySession, myContext);
            myLog = SessionContext.getLog();

            System.out.println("NotesMain Started....");
            // Your code goes here....

            myLog.information(".... completed!");
        } catch (NotesException ne) {
            myLog.error("Agent ERROR: NotesException = " + ne.text);
            myLog.writeStackTrace(ne);
        } catch (Exception e) {
            myLog.error("Agent ERROR: Exception = " + e.getMessage());
            myLog.writeStackTrace(e);
        } finally {
            cleanUp();
        }
    }

    /*  Instructions for debugging!!
    // TODO - adjust run configuration
        You need to add VM arguments, e.g.:

            -Dsun.boot.library.path="c:\\Lotus\\Notes;c:\\Lotus\\Notes\\jvm\\bin"

     ... and you need to add a PATH environment variable, e.g.:

            PATH    c:\Lotus\Notes
    */

    // Remember to rename these constructors when duplicating this code to a new agent!!!
    // ... if not handled by Eclipse when pasting a copy ;-)
    public AgentTemplate() {
    }

    public AgentTemplate(Session s, AgentContext c) {
        this.mySession = s;
        this.myContext = c;
    }

    // Entry point for Java program (when running from Eclipse)
    public static void main(String[] args) {
        // By example from Bob Balaban "The two-headed beast". See more at:
        // http://www.bobzblog.com/tuxedoguy.nsf/dx/DominoAgents-Eclipse_v2.pdf/$file/DominoAgents-Eclipse_v2.pdf
        System.out.println("main Starting....");
        Session s = null;
        Database d = null;
        DocumentCollection dc = null;
        AgentContext ctx = null;

        System.out.println("NotesThread.sinitThread()....");
        NotesThread.sinitThread();
        try {
            System.out.println("createSession....");
            s = NotesFactory.createSession();
            System.out.println("set database....");
            d = s.getDatabase(DebugAgentContext.ECLIPSE_SERVER, DebugAgentContext.ECLIPSE_DATABASE);
            System.out.println("Database: " + d.getFileName() + " on " + d.getServer());
            System.out.println("set debug context....");
            ctx = new DebugAgentContext(s, d, dc);
            // Create the agent object, invoke it on NotesMain(), the way Domino does
            System.out.println("create agent object....");
            AgentTemplate agent = new AgentTemplate(s, ctx);
            System.out.println("call agent....");
            agent.NotesMain();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (s != null)
                    s.recycle();
            } catch (Exception x) {
            }
            NotesThread.stermThread();
        }
    } // end main - and Eclipse entry point

}

簡単にテストできるように、「印刷」コマンドをコードに残しました。明らかに、実際のテンプレートからそれらを削除します。

これを機能させるのに貢献した可能性のあるもう1つのことは、構成パラメーターの大文字と小文字を変更して、ディレクトリがディスク上にあるのとまったく同じ大文字/小文字に一致するようにしたことです。

/ジョン

于 2012-10-18T09:48:07.300 に答える