Tagged Questions

Gaelyk is a lightweight Groovy toolkit for Google App Engine Java. Gaelyk lets you deploy applications on Google App Engine Java Gaelyk gives you the choice to use Groovy for developing your applications Gaelyk builds upon Groovlets and the Groovy template servlet Gaelyk allows you to cleanly ...

learn more… | top users | synonyms

10
votes
8answers
885 views

What are the best options for hosting a Grails application?

I'm looking for the best hosting option for a Grails application, my requirements are: Low number of requests and storage (to start with likely only hundreds of requests per day) Ease of deployment ...
5
votes
4answers
659 views

Grails vs Gaelyk for new Groovy AppEngine application

I am beginning development on a new AppEngine application using Groovy. It will be medium-sized and use a number of AppEngine services. It will have both a regular and a mobile website, using HTML 5 ...
4
votes
2answers
192 views

migrating from google app engine with Groovy, Java and Gaelyk to another host

I currently have an application that is built on gaelyk, groovy and GAE. I would like to move this application as is to another host like Amazon EC2 and run it against MYSQL. Is this possible? I ...
3
votes
1answer
136 views

How to get the actual URI on Google App Engine?

I'm using Gaelyk 0.7 with GAE 1.5, and I'm attempting to get the request URI in controllers/views: ${request.uri} That works fine locally, however org.mortbay.jetty.Request.getUri() does not seem ...
1
vote
1answer
118 views

Relational data model to Google datastore mapping

First off, I come from a RDBMS/SQL/C++/Java/Python background and I'm a newbie to Gaelyk, the Google API and the Google datastore. I like to model (using flowcharts for code and DB modeling tools ...
1
vote
1answer
141 views

Gaelyk - How Can I pass model objects between Controller and View

I am just starting to use Gaelyk. I was expecting it to behave like Spring MVC; I create my model object in the controller.groovy, and the format the model object in the .gtpl. In the controller I ...
1
vote
1answer
159 views

how to port a desktop groovy app to cloud/android

I have an application already developed and in production. It's developed in groovy, as a desktop application with its own UI, and its purpose is to screen-scrape a website to extract some information ...
1
vote
2answers
94 views

In GAELYK, how do i store the form-submitted params variable as Text type in entity/datastore

Im using Gaelyk to build an app on Google app engine, I have a form that submits contents of a text-area (which exceeds 500 characters), to be saved in datastore. so here is what i did :- ...
1
vote
3answers
462 views

Gaelyk: How to perform datastore queries on collection attributes

The Gaelyk tutorial provides some nice low level wrappers to the datastore and this Gaelyk google groups article describes an easy way to model relationships by simply storing the keys in a collection ...
1
vote
1answer
303 views

Grails or Gaelyk for medium sized application

I'm planing to start working on a medium sized application (not too complex but not too simple either) that'll run on the google app engine. I had earlier decided to use Gaelyk because of the support ...
1
vote
2answers
375 views

Does Sitemesh work with Gaelyk ? Does anybody have a working guide?

Has anyone been able to get sitemesh and gaelyk working together? This seems to be possible as mentioned here ...
0
votes
0answers
15 views

HTML params as array

I use Gaelyk framework on Google AppEngine. from HTML form I need to get params in exact sequence. Order of params is very important from my application. I have HTML Form contans: <input ...
0
votes
0answers
39 views

Gaelyk eclipse configuration error

I've tried to configure a gaelyk project in eclipse using the gradle script of the template project and always failed. to do this I use the following command: gradlew cleanEclipse eclipse All the ...
0
votes
1answer
52 views

Gradlew behind a proxy

I have a sample from Gaelyk (called Bloogie) and it is using gradlew Problem is that i am behid a proxy. Read gradle docs and found this: gradle.properties ...
0
votes
1answer
124 views

Using Gaelyk URL routing in a non google app engine application

I have a Groovy Web application which is NOT being deployed on Google app engine. (GAE) I have used Gaelyk before and I like the URL routing functionality described in their doc How do I port over ...