Java - 如何从Google Cloud Datastore中删除实体

时间:2018-03-15 12:31:40

标签: java google-cloud-platform google-cloud-datastore

架构:我有一个Web应用程序,我与数据存储区和客户端(raspberry pi)进行交互,它使用Google Cloud Endpoints从Web应用程序调用方法。

我必须补充一点,我对网络应用程序不是很熟悉,我认为setConsumed()方法有问题,因为我可以在app引擎仪表板中看到/ create的调用但是/ setConsumed没有条目。

我可以使用objectify将实体添加到数据存储区:

//client method
private static void sendSensorData(long index, String serialNumber) throws IOException {
    SensorData data = new SensorData();
    data.setId(index+1);
    data.setSerialNumber(serialNumber);
    sensor.create(data).execute();
}

//api method in the web application
@ApiMethod(name = "create", httpMethod = "post")
public SensorData create(SensorData data, User user) {
    // check if user is authenticated and authorized
    if (user == null) {
        log.warning("User is not authenticated");
        System.out.println("Trying to authenticate user...");
        createUser(user);
        // throw new RuntimeException("Authentication required!");
    } else if (!Constants.EMAIL_ADDRESS.equals(user.getEmail())) {

        log.warning("User is not authorised, email: " + user.getEmail());
        throw new RuntimeException("Not authorised!");
    }
    data.save();

    return data;
}

//method in entity class SensorData
public Key<SensorData> save() {
    return ofy().save().entity(this).now();
}

但是,我无法使用以下代码从数据存储中删除实体。

编辑: Stackdriver Logging中有很多创建请求的日志,但没有setConsumed()。因此,虽然这两种方法属于同一类,但似乎呼叫甚至都无法到达API。

编辑2:当我从Powershell调用方法时,实体被删除,因此问题最有可能发生在客户端。

//client method
private static void removeSensorData(long index) throws IOException {
    sensor.setConsumed(index+1);
}

//api method in the web application
@ApiMethod(name = "setConsumed", httpMethod = "put")
public void setConsumed(@Named("id") Long id, User user) {
    // check if user is authenticated and authorized
    if (user == null) {
        log.warning("User is not authenticated");
        System.out.println("Trying to authenticate user...");
        createUser(user);
        // throw new RuntimeException("Authentication required!");
    } else if (!Constants.EMAIL_ADDRESS.equals(user.getEmail())) {

        log.warning("User is not authorised, email: " + user.getEmail());
        throw new RuntimeException("Not authorised!");
    }

    Key serialKey = KeyFactory.createKey("SensorData", id);
    datastore.delete(serialKey);
}

2 个答案:

答案 0 :(得分:0)

我终于可以自己解决了!

这个问题只与用于for循环的removeSensorData(long index)的索引的数据类型有关,因此它是一个Integer而不是long。

答案 1 :(得分:0)

这是我从数据存储中删除实体所遵循的。

public boolean deleteEntity(String propertyValue) {
    String entityName = "YOUR_ENTITY_NAME";
    String gql = "SELECT * FROM "+entityName +" WHERE property= "+propertyValue+"";
    Query<Entity> query = Query.newGqlQueryBuilder(Query.ResultType.ENTITY, gql)
            .setAllowLiteral(true).build();
    try{
        QueryResults<Entity> results = ds.run(query);           
        if (results.hasNext()) {
            Entity rs = results.next();             
            ds.delete(rs.getKey());
            return true;
        }
        return false;
    }catch(Exception e){
        logger.error(e.getMessage());
        return false;
    }
}

如果您不想使用文字,您还可以按如下方式使用绑定:

String gql = "SELECT * FROM "+entityName+" WHERE property1= @prop1 AND property2= @prop2";      
Query<Entity> query = Query.newGqlQueryBuilder(Query.ResultType.ENTITY, gql)
            .setBinding("prop1", propertyValue1)
            .setBinding("prop2", propertyValue2)
            .build();

希望这有帮助。