I created project with Spring Roo:

>project --topLevelPackage my.tryouts
>persistence setup --provider DATANUCLEUS --database GOOGLE_APP_ENGINE
>entity --class ~.domain.MyEntity
>field string --fieldName name
>controller all --package ~.web
>perform eclipse

No I added empty dummy.jsp to src\main\webapp\WEB-INF\views to make
google app engine to compile jspx-files in that directory.

>mvn clean gae:deploy

This gives me:
...
[INFO] Webapp assembled in [682 msecs]
[INFO] Building war: C:\Users\Tomi\workspace\springRoo\last\target
\lauber-0.1.0-SNAPSHOT.war
[INFO] [gae:deploy {execution: default-cli}]
[INFO] Updating Google App Engine Server...
********************************************************
There is a new version of the SDK available.
-----------
Latest SDK:
Release: 1.3.4
Timestamp: Sat May 15 00:26:11 EEST 2010
API versions: [1.0]

-----------
Your SDK:
Release: 1.3.2
Timestamp: Wed Mar 17 21:19:29 EET 2010
API versions: [1.0]

-----------
Please visit http://code.google.com/appengine for the latest SDK.
********************************************************
Reading application configuration data...
Jun 16, 2010 10:13:49 AM
com.google.apphosting.utils.config.AppEngineWebXmlReader
readAppEngineWebXml
INFO: Successfully processed C:/Users/Tomi/workspace/springRoo/last/
target/lauber-0.1.0-SNAPSHOT\WEB-INF/appengine-web.xml
Jun 16, 2010 10:13:49 AM
com.google.apphosting.utils.config.AbstractConfigXmlReader
readConfigXml
INFO: Successfully processed C:/Users/Tomi/workspace/springRoo/last/
target/lauber-0.1.0-SNAPSHOT\WEB-INF/web.xml
Beginning server interaction for laubertea...
0% Creating staging directory
5% Scanning for jsp files.
8% Compiling jsp files.

And I see this jsp compilation phase for hours.

To make sure that the older SDK-version does not interfere compilation
I deployed this with appcfg.cmd update of SDK 1.3.4. Still the same
result.

Spring Roo generated JSP-files take advantage of custom taglibs
following way:
xmlns:page="urn:jsptagdir:/WEB-INF/tags/form"

When I remove all the references to these custom taglibs the deploying
will get message:

2010-06-16 10:17:20,402 [main] ERROR DataNucleus.Plugin - Bundle
"org.datanucleus.store.appengine" requires "org.datanucleus" version
"[1.0.4, 1.1.5.f
inal)" but the resolved bundle has version "1.0.7.final" which is
outside the expected range.

However jsp compilation works without tagdir references.

How can I get this working with custom tagdirs? I have tested to set
used Java SDK excplicitely in appcfg.cmd and copied Java SDK tools.jar
to appengine-java-sdk-1.3.4\lib\shared, but this does not have any
effect.





-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to