[appengine-java] google app engine exception affected app's performance

2009-11-29 Thread Donny
I use JPA in my servlet in my app, but some times when I query data google app engine will report some exception(following is my log from app engine's admin log. ResultServlet is my servlet), the exception is about: "com.google.appengine.repackaged.com.google.common.base.FinalizableReferenceQueue

[appengine-java] Re: How to location my service in Unit testing?

2009-09-23 Thread Donny
Got it, really appreciate your detailed demo, thanks.:) On Sep 23, 6:15 pm, leszek wrote: > You need to have your data access method separated from servlet code > or RPC (if GWT is used) code. > > Assume that you have something like: > > class Customer  { > >   private Key customerId; > ... > >

[appengine-java] Re: How to location my service in Unit testing?

2009-09-22 Thread Donny
me code, I can try to > help you further. > > - Jason > > > > On Sat, Sep 19, 2009 at 7:42 PM, Donny wrote: > > > Hi,  I have a problem on locating my service in unit testing. > > > I tried to follow the guide > >http://code.google.com/appengine/docs/java/ho

[appengine-java] How to location my service in Unit testing?

2009-09-19 Thread Donny
Hi, I have a problem on locating my service in unit testing. I tried to follow the guide http://code.google.com/appengine/docs/java/howto/unittesting.html the sample code in guide to locate mail service is ok, but I cann't configure out how to location my own service. As I am using eclipse, the