localhost/127.0.0.1:9042]无法连接

ryoqjall  于 2021-06-10  发布在  Cassandra
关注(0)|答案(1)|浏览(396)

尝试通过下面的代码将cassandra与java连接并获取localhost/127.0.0.1:9042]无法连接错误-

public static void main(String[] args)
    {
        Cluster cluster;
        Session session;
        //cluster connects to the address of the node provided.One contact point is required.Good to have multiple
        cluster=Cluster.builder().addContactPoint("localhost").build();

        session=cluster.connect("ecommerce");
        session.execute("INSERT INTO products (pdt_id, cat_id, pdt_name, pdt_desc, price, shipping) VALUES (002,105, 'Candy 0.9 cu. ft. Washing Machine', 'Capacity of 1 cu. ft.10 different power levels', 64.00, 'Expedited')");
        session.execute("INSERT INTO products (pdt_id, cat_id, pdt_name, pdt_desc, price, shipping) VALUES (003,106, 'Prestige 0.9 cu.cm. Pressure Cooker', 'Capacity: 18 qt.', 70.00, 'Dispatched from warehouse')");

        String pdtid = null, pdtname = null, pdtdesc = null;
        float price = 0;
        ResultSet resultSet=session.execute("select * from products");
        for(Row row:resultSet)
        {
            pdtid = Integer.toString(row.getInt("pdt_id"));
            pdtname = row.getString("pdt_name");
        }
        cluster.close();
        }

    }
watbbzwu

watbbzwu1#

java代码语法在我看来是正确的。
请确保您的计算机上正在运行cassandra,并且端口9042已打开(检查防火墙)。你可以检查执行 cqlsh 看看Cassandra有没有React。
我看到你用的是一个过时版本的驱动程序。你应该考虑升级到4.x。以下是完整的文档:https://docs.datastax.com/en/developer/java-driver/4.4/manual/core/

相关问题