Spring, Hibernate, GWT et Ext GWT
Bonjour,
Je suis débutant sur le framework spring.
J'ai lu le tuto http://baptiste-meurant.developpez.c...ing-hibernate/.
J'ai voulu le modifier en utilisant les framework GWT et Ext GWT.
J'ai l'erreur suivante à la compilation :
Code:
1 2 3 4
| [ERROR] Line 15: The import tuto.webssh.domain.model.Item cannot be resolved
[ERROR] Line 16: The import tuto.webssh.domain.model.Session cannot be resolved
[ERROR] Line 24: Session cannot be resolved to a type
[ERROR] Line 26: Item cannot be resolved to a type |
Voici l'entête de ma classe session :
Code:
1 2 3 4 5 6 7 8 9
| import java.io.Serializable;
import com.extjs.gxt.ui.client.data.BaseModel;
import com.extjs.gxt.ui.client.data.BeanModelTag;
import com.google.gwt.user.client.rpc.IsSerializable;
@SuppressWarnings("serial")
public class Session extends BaseModel implements BeanModelTag, Serializable, IsSerializable { |
Si vous pouvez m'aidez à dorriger mon erreur.
Je vous en remercie par avance