Re: [appengine-java] Which java framework to use?

2011-11-20 Thread Guillaume Laforge
Hi, You might have a look at Gaelyk 1.1, which is quite lightweight: http://gaelyk.appspot.com/ In dev mode, you can make changes and just refresh your browser, it's got a simple MVC approach, and lots of shortcuts and syntax sugar to make the GAE SDK APIs easier to use. Guillaume PS: disclaime

[appengine-java] Show project: Neytap (classifieds)

2011-11-20 Thread Thomas Wiradikusuma
Hi guys, Last night I launched my pet project to public, www.neytap.com. It's a (very) simple classifieds for room rentals inside Facebook. It runs on GAE/Java and written in Scala, using just Servlet/JSP in the server. I tried Spring but given up. Other than that, it uses: Objectify, StringTemp

Re: [appengine-java] Which java framework to use?

2011-11-20 Thread Raphael André Bauer
On Sun, Nov 20, 2011 at 12:54 PM, sppl wrote: > I am starting off with a new project using app engine java. I am trying to > decide what mvc framework to use. I went through previous messages posted by > group members and found this link. I then narrowed down my choices to > following frameworks,

[appengine-java] Re: Which java framework to use?

2011-11-20 Thread Kb
GWT ! no one mentioned GWT : ( On Nov 20, 4:54 pm, sppl wrote: > I am starting off with a new project using app engine java. I am trying to > decide what mvc framework to use. I went through previous messages posted > by group members and found this > link

[appengine-java] Re: Which java framework to use?

2011-11-20 Thread sppl
Jeff, Thanks for your input. I looking into objectify for datastore access in my app. On Nov 20, 12:12 pm, Jeff Schnitzer wrote: > My favored stack right now: > > Objectify (I'm the lead developer, so this one was easy) > Resteasy + Htmleasy + Guice, tightly integrated > Cambridge templates (wit

[appengine-java] Re: Which java framework to use?

2011-11-20 Thread sppl
Thanks for pointing me to backbone.js. I am also looking at knockout.js as well. On Nov 20, 12:00 pm, Chris wrote: > My suggestion: > > For datastore access use > Objectify:http://code.google.com/p/objectify-appengine/ > > For your MVC framework go with AJAX/Javascript/HTML5 and use > Backbone.

Re: [appengine-java] Is BlobInfoFactory thread safe?

2011-11-20 Thread Jeff Schnitzer
Look at the source code. BlobInfoFactory only has one piece of member data, a DatastoreService. So if DS is thread-safe, so is BIF. I don't know if DS is thread-safe though. Jeff On Sat, Nov 19, 2011 at 9:20 AM, Marcel Overdijk wrote: > Is BlobInfoFactory thread safe? > It's not mentioned in

Re: [appengine-java] Re: package javax.servlet.annotation does not exist

2011-11-20 Thread Jeff Schnitzer
Occasionally eclipse gets stupid like this. Some combination of Project Clean, closing/opening the project, and closing/opening eclipse eventually sets it right. Jeff On Sat, Nov 19, 2011 at 10:23 PM, Mauricio Porras P < mauricio.porra...@gmail.com> wrote: > I'm having this same issue, did you

Re: [appengine-java] Which java framework to use?

2011-11-20 Thread Jeff Schnitzer
My favored stack right now: Objectify (I'm the lead developer, so this one was easy) Resteasy + Htmleasy + Guice, tightly integrated Cambridge templates (with JEXL) Coffeescript + jQuery + Handlebars.js on the frontend Heavy use of Jackson to jsonify objects, including embedded in the page html to

Re: [appengine-java] Re: prefetchSize vs chunkSize

2011-11-20 Thread Jeff Schnitzer
Alfred made this comment, which sheds a lot of light on it: On Sat, Nov 19, 2011 at 8:56 PM, Alfred Fuller < arfuller+appeng...@google.com> wrote: > if you set chunkSize and not prefetchSize every call will try to return > chuckSize results (even the first call) > if you set prefetchSize and chun

[appengine-java] Re: Which java framework to use?

2011-11-20 Thread Chris
My suggestion: For datastore access use Objectify: http://code.google.com/p/objectify-appengine/ For your MVC framework go with AJAX/Javascript/HTML5 and use Backbone.js: http://documentcloud.github.com/backbone/ We've used Tapestry5 on App Engine before but without lazy loading and serious opt

[appengine-java] Re: Is BlobInfoFactory thread safe?

2011-11-20 Thread Tim Niblett
You can't create a new thread, but you can have multiple concurrent requests if you say your app is thread safe in appengine-web.xml, which means that your code will be running with multiple threads. I must admit that I just assumed all the services provided by App Engine to be thread safe. I

[appengine-java] Which java framework to use?

2011-11-20 Thread sppl
I am starting off with a new project using app engine java. I am trying to decide what mvc framework to use. I went through previous messages posted by group members and found this link. I then narrowed down my choices to f

[appengine-java] Re: package javax.servlet.annotation does not exist

2011-11-20 Thread Mauricio Porras P
I'm having this same issue, did you find a solution already? Greetings. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/2vk_8GdySmYJ

[appengine-java] Re: Documentation Issue: TaskQueue Testing

2011-11-20 Thread Broc Seib
Erick, A while back the API changed to use with() functions, and I'm sure they did not catch all the docs that needed updated. You should file an issue here for fixing the documentation and someone will eventually get to it: http://code.google.com/p/googleappengine/issues/list Broc On Nov

Re: [appengine-java] Re: prefetchSize vs chunkSize

2011-11-20 Thread Gal Dolber
Found this http://stackoverflow.com/questions/6914069/google-app-engine-chunksize-prefetchsize-where-can-i-read-details-on-it On Sun, Nov 20, 2011 at 8:27 AM, Max wrote: > +1 > > I am also curious on the answer. I found following code snippet in class > QueryTranslator, it looks to some degree t

[appengine-java] Re: prefetchSize vs chunkSize

2011-11-20 Thread Max
+1 I am also curious on the answer. I found following code snippet in class QueryTranslator, it looks to some degree these two are the same and prefetchSize overrides chunkSize? DatastorePb.Query proto = new DatastorePb.Query(); if (fetchOptions.getPrefetchSize() != null) { prot

[appengine-java] Re: Is BlobInfoFactory thread safe?

2011-11-20 Thread Max
Hi Marcel, What is your use case? Why do you want to know if it's thread safe? You can't create new thread inside appengine sandbox. Regards, Max -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the w