when i am using this code it gives error

后端 未结 1 1525
广开言路
广开言路 2021-01-27 22:48
public ContactEntry createContact(String username)throws IllegalArgumentException {
        // Create the entry to insert
        ContactsService myService = new Contact         


        
相关标签:
1条回答
  • 2021-01-27 23:20

    You can not use server side code in GWT directly. As GWT will not be able to generate JavaScript for com.google.gdata.data.contacts.ContactEntry this is giving you above error.

    0 讨论(0)
提交回复
热议问题