Problems start with Spring Roo and GWT

I am trying to get started with SpringRoo and GWT after watching the keynote ... unfortunately, I am stuck with this problem. I successfully created a project using Roo and added persistence, entities, and when I execute the execute package command, I get this error:

  23/5/10 12:10:13 AM AST: [ERROR] ApplicationEntityTypesProcessor cannot be resolved
 23/5/10 12:10:13 AM AST: [ERROR] ApplicationEntityTypesProcessor cannot be resolved to a type
 23/5/10 12:10:13 AM AST: [WARN] advice defined in org.springframework.mock.staticmock.AnnotationDrivenStaticEntityMockingControl has not been applied [Xlint: adviceDidNotMatch]
 23/5/10 12:10:13 AM AST: [WARN] advice defined in org.springframework.mock.staticmock.AbstractMethodMockingControl has not been applied [Xlint: adviceDidNotMatch]
 23/5/10 12:10:13 AM AST: Build errors for helloroo;  org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo: aspectj-maven-plugin: 1.0: compile (default) on project helloroo: Compiler errors: 
 error at import tp.gwt.request.ApplicationEntityTypesProcessor;

I see this in the Maven console and cannot complete the build ... I know there is some kind of error, but how and why? Because I downloaded the entire latest version, including the GWT release. Any idea why this error is occurring? How to solve this problem?

+4
source share
2 answers

It looks like a ROO-868 (I'm not talking about the same problem, but it looks like). I am not very familiar with the Roo development workflow, but ... what happens if you run mvn gwt:run as suggested?

+2
source

I am not sure about that. But, according to my knowledge, this problem can occur if mavan does not load all the necessary resources.

0
source

Source: https://habr.com/ru/post/1310628/


All Articles