Questions tagged [gaelyk]

Gaelyk is a lightweight Groovy toolkit for Google App Engine Java.

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 separate your views with Groovy templates and your actions in Groovlets.
  • Gaelyk simplifies the usage of the Google App Engine SDK by providing more concise and more powerful shortcuts when using the datastore, memcache, the blobstore, the images service, the URL fetch service, when sending and receiving emails or Jabber messages, and much more.
  • Gaelyk lets you define friendly REST-ful URLs thanks to its URL routing system
  • Gaelyk provides a simple plugin system for improving code reuse and code sharing
  • Gaelyk is Open Source and is released under the Apache License (ASL 2). Its source code is hosted by Github
29 questions
58
votes
18 answers

Gradlew behind a proxy

I have a sample from Gaelyk (called Bloogie) and it is using gradlew. I am behind a proxy. I've read gradle docs and found…
Cris
  • 4,947
  • 6
  • 44
  • 73
5
votes
4 answers

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 and JQuery. Which of the two frameworks suits my…
Axel Fontaine
  • 34,542
  • 16
  • 106
  • 137
5
votes
3 answers

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 on the entity. My question is how can I perform…
Chris
  • 3,552
  • 2
  • 26
  • 36
4
votes
1 answer

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 for the database) before I code. I've used Erwin…
user78706
4
votes
2 answers

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 dont need the google USER services.
Tihom
  • 3,384
  • 6
  • 36
  • 47
3
votes
1 answer

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 supported in production. When I reach /some/path I…
Tiago Fernandez
  • 1,453
  • 3
  • 19
  • 36
3
votes
2 answers

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 :- //add-a-book.groovy import…
2
votes
1 answer

Groovy @Grab generating java.lang.NoClassDefFoundError

I am attempting to get Jsoup to work on my Google App Engine experiment project with Gaelyk. I work with Grails at my day job, so figured it would be a piece of cake to start playing with Gaelyk... Not so fast... The error happens when I…
Uthaman
  • 25
  • 4
2
votes
1 answer

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 it provides for GAE but I have discovered that it…
Gaurav
  • 1,466
  • 3
  • 17
  • 24
2
votes
1 answer

Glide/Gaelyk/Groovy: Error deploying to Google App Engine: Missing web.xml (No such file or directory)

The Glide Google App Engine (https://github.com/kdabir/glide) project looks like a great way to get simple Groovy scripts hosted and running on the web. However, after following the instructions on http://glide-gae.appspot.com/docs/intro I get…
Chris
  • 3,552
  • 2
  • 26
  • 36
2
votes
1 answer

Groovy servlet on app engine

I've just created a google app engine project and I would like to use groovy servlets. I have placed groovy-all in the lib folder and the mapping in the web.xml. When I try to access the servlet I've an exception: access denied…
Antonio
  • 181
  • 1
  • 15
2
votes
1 answer

Groovy JavaDocs - Is there a 'since' version label for XmlUtil?

I'm trying to find when XmlUtil was first introduced to Groovy? Is there a 'since' version X tag somewhere and I'm just not seeing it? In Groovy 2.0.5 I'm getting a missing method exception but not in 2.1.3 for…
Brian
  • 13,412
  • 10
  • 56
  • 82
1
vote
2 answers

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 do this def model = new…
Ben Hammond
  • 705
  • 1
  • 7
  • 20
1
vote
1 answer

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 every minute, and show alerts to the user when…
Persimmonium
  • 15,593
  • 11
  • 47
  • 78
1
vote
1 answer

GAE: No longer able to update my Gaelyk project due to ClientLogin deprecation, what needs to change?

There are a couple of other questions that are closely related to this one, but neither of them have answers specific to a Gaelyk application. When I try to use the appengineupdate Gradle command to update my Gaelyk application to the server, after…
seansand
  • 1,492
  • 4
  • 18
  • 23
1
2