Pergunta

Eu fiz meu próprio método no esquema RPC usando a estrutura GWT. Agora, preciso adicionar outro método.

Então, eu escrevi este código para cada parte do RPC:

package org.sinfonet.client;

import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;

@RemoteServiceRelativePath("gwtservice")
public interface GWTService extends RemoteService {
    public String checkLogin(String nickname, String password);
    public boolean anotherFunction(String nickname);
}

#########################################################

package org.sinfonet.client;

import com.google.gwt.user.client.rpc.AsyncCallback;

public interface GWTServiceAsync {
    public void checkLogin(String nickname, String password, AsyncCallback<String> callback);
    public void anotherFunction(String nickname, AsyncCallback<java.lang.Boolean> asyncCallback);
}    

#########################################################

package org.sinfonet.server;

import com.google.gwt.user.server.rpc.RemoteServiceServlet;
import java.util.ArrayList;

import org.sinfonet.client.GWTService;
import org.sinfonet.mgmt.Configuration;
import org.sinfonet.mgmt.Database;

public class GWTServiceImpl extends RemoteServiceServlet implements GWTService {
    public String checkLogin(String nickname, String password) {
        Database mydb=Configuration.getDatabase();
        mydb.connetti();

        // faccio md5 ed escape
        String log_check_user=nickname;
        String log_check_pass=password;

        // controllo che l'utente esista
        ArrayList<String[]> db_result=null;
        db_result=mydb.selectQuery("SELECT nickname FROM users WHERE nickname='"+log_check_user+"' AND password='"+log_check_pass+"'");
        if(db_result.size()!=0) {
            return "YES";
        }

        // sconnessione al database
        mydb.disconnetti();

        return "NO";
    }

    public boolean anotherFunction(String nickname) {
        // somethings others
        return true;
    }
}

#########################################################

final AsyncCallback<java.lang.Boolean> callCheckLogin = new AsyncCallback<java.lang.Boolean>() {
    public void onSuccess(boolean result) {
        if(result) {
            designLogout(menu_login_label1.getText());
        } else {
            menu_err.setText("Username e password non validi");
        }
    }
};

// Listen for the button clicks
menu_login_button.addClickHandler(new ClickHandler(){
    public void onClick(ClickEvent event) {
        // Make remote call. Control flow will continue immediately and later
        // 'callback' will be invoked when the RPC completes.
        getService().anotherFunction(menu_login_input1.getText(), callCheckLogin);
    }
});

Como você pode ver, eu adicionei o método OUTROFUNCION () (Boolean), mas o NetBeans me diz que preciso implementar todo o método Abracts sobre AllChecklogin, mas não vou fazer isso :) Como posso resolver esse problema?

Foi útil?

Solução

Então, Netbeans reclama sobre o faltando onFailure Método, certo? Se você não deseja implementar esse método sempre, escreva uma classe abstrata como:

public abstract class BaseAsyncCallback<T> implements AsyncCallback<T> {
    @Override
    public void onFailure(Throwable caught) {
        // Perform generic failure handling
    }
}

Então você pode transformar seu código em:

final AsyncCallback<java.lang.Boolean> callCheckLogin = 
    new BaseAsyncCallback<java.lang.Boolean>() {
      public void onSuccess(java.lang.Boolean result) {
        ...
      }
    };

Agora você não precisa implementar onFailure mais, exceto se você precisar executar um manuseio adicional de erros.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top