0

我是 Apache Camel 的新手,并试图接收一个简单的 SNMP 陷阱。

我用 camel-core 和 org.apache.servicemix.bundles.snmp4j 设置了 Maven 项目。

我找不到任何 SNMP 示例,但基于其他示例,我提出了这个 Main 类:

public class Main {

    public static Processor myProcessor = new Processor() {
        public void process(Exchange arg0) throws Exception {
            // save to database
        }
    };

    public static void main(String[] args) {

        CamelContext context = new DefaultCamelContext();
        context.addComponent("snmp", new SnmpComponent());

        RouteBuilder builder = new RouteBuilder() {
            public void configure() {
                from("snmp:127.0.0.1:162?protocol=udp&type=TRAP").process(myProcessor);
            }
        };

        try {
            context.addRoutes(builder);
            context.start();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

}

但是,当我在 Eclipse 中将它作为 Java 应用程序运行时,它会在运行半秒后退出。我期待它继续运行并收听 127.0.0.1:162 ...

任何帮助是极大的赞赏

4

1 回答 1

0

至少捡起一个陷阱并打印到 System.out 的一种方法是这样的:

public class SNMPTrap {

    private Main main;

    public static void main(String[] args) throws Exception {
        SNMPTrap snmpTrap = new SNMPTrap();
        snmpTrap.boot();
    }

    @SuppressWarnings("deprecation")
    public void boot() throws Exception {

        main = new Main();
        main.bind("snmp", new SnmpComponent());
        main.addRouteBuilder(new MyRouteBuilder());
        main.addMainListener(new Events());

        System.out.println("Starting SNMPTrap. Use ctrl + c to terminate the JVM.\n");
        main.run();
    }

    private static class MyRouteBuilder extends RouteBuilder {
        @Override
        public void configure() throws Exception {
            from("snmp:127.0.0.1:162?protocol=udp&type=TRAP").process(myProcessor)
                .bean("snmp");
        }
    }

    public static Processor myProcessor = new Processor() {
        public void process(Exchange trap) throws Exception {
            System.out.println(trap.getIn().getBody(String.class));

            // Save to DB or do other good stuff
        }
    };

    public static class Events extends MainListenerSupport {

        @Override
        public void afterStart(MainSupport main) {
            System.out.println("SNMPTrap is now started!");
        }

        @Override
        public void beforeStop(MainSupport main) {
            System.out.println("SNMPTrap is now being stopped!");
        }
    }
}

但是,我收到警告说,作为 Camel 核心的一部分的 Main 现在已弃用。

于 2016-11-29T11:34:10.867 回答