I have spring roo 1.1.2. I am creating a new project, for example
project --topLevelPackage leraning.roogwt
then I establish constancy and add entity
persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY entity --class ~.MyEntity field string description
gwt setup
gwt setup
and when I try to pack it, a compilation error occurs
perform package
Mistakes
[Thread-8] [ERROR] The import com.google.appengine cannot be resolved [Thread-8] [ERROR] User cannot be resolved to a type [Thread-8] [ERROR] The import com.google.appengine cannot be resolved [Thread-8] [ERROR] UserService cannot be resolved to a type [Thread-8] [ERROR] UserServiceFactory cannot be resolved [Thread-8] [ERROR] The import com.google.appengine cannot be resolved [Thread-8] [ERROR] UserService cannot be resolved to a type [Thread-8] [ERROR] UserServiceFactory cannot be resolved [Thread-8] [ERROR] User cannot be resolved to a type
and detailed in code
[Thread-8] [ERROR] Failed to execute goal org.codehaus.mojo:aspectj-maven-plugin:1.0:compile (default) on project roogwt: Compiler errors : [Thread-8] [ERROR] error at import com.google.appengine.api.users.User; [Thread-8] [ERROR] ^^^^^^^^^^^^^^^^^^^ [Thread-8] [ERROR] J:\springroo\gwtroo\src\main\java\leraning\roogwt\server \gae\UserServiceWrapper.java:3:0::0 The import com.google.appengine cannot be resolved [Thread-8] [ERROR] error at public User getCurrentUser(); [Thread-8] [ERROR] ^^ [Thread-8] [ERROR] J:\springroo\gwtroo\src\main\java\leraning\roogwt\server\gae\UserServiceWrapper.java:16:0::0 User cannot be resolved to a type [Thread-8] [ERROR] error at import com.google.appengine.api.users.UserService; [Thread-8] [ERROR] ^^^^^^^^^^^^^^^^^^^ [Thread-8] [ERROR] J:\springroo\gwtroo\src\main\java\leraning\roogwt\server\gae\GaeAuthFilter.java:3:0::0 The import com.google.appengine cannot be re..... <similar errors in other files>
source share